uri_path .= 'customer/'; $this->uri_path .= "customer/"; // $this->view_path .= "customer" . DIRECTORY_SEPARATOR; } final public function getClientService(): ClientService { if (!$this->_clientrService) { $this->_clientrService = new ClientService($this->request); } return $this->_clientrService; } //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관련 }