_service) { $this->_service = new UserService($this->request); } return $this->_service; } public function getHelper(): mixed { if (!$this->_helper) { $this->_helper = new UserHelper($this->request); } return $this->_helper; } //Index,FieldForm관련 public function index(): string { helper(['form']); return view('admin/welcome_message', ['viewDatas' => $this->getViewDatas()]); } }