title = "관리자페이지 메인"; $this->helper = new Helper($this->request); } protected function getServiceClass(): Service { if ($this->service === null) { $this->service = new Service($this->request); } return $this->service; } //Index,FieldForm관련 public function getFields(): array { return []; } public function getFilterFields(): array { return []; } public function getBatchJobFields(): array { return []; } //Index,FieldForm관련 public function index(): string { helper(['form']); return view('admin/welcome_message', ['viewDatas' => $this->getViewDatas()]); } }