title = "관리자페이지 메인"; } final public function getService(): Service { if (!$this->_service) { $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()]); } }