uri_path .= 'customer/'; // $this->view_path .= "customer" . DIRECTORY_SEPARATOR; } final public function getClientService(): ClientService { if (!$this->_clientService) { $this->_clientService = new ClientService($this->request); } return $this->_clientService; } //Index,FieldForm관련 protected function getFormFieldOption(string $field, array $options = []): array { switch ($field) { case 'clientinfo_uid': $options[$field] = $this->getClientService()->getFormFieldOption($field); // echo $this->getUserModel()->getLastQuery(); // dd($options); break; default: $options = parent::getFormFieldOption($field, $options); break; } return $options; } //Index,FieldForm관련 }