Esempio n. 1
0
 public function getSelectedServices()
 {
     $data = CustomerItems::find()->where("customer_id =" . $this->item_id)->select('item_id')->all();
     $listData = ArrayHelper::map($data, 'item_id', 'item_id');
     return $listData;
 }