layout = "admin"; $this->uri_path = "admin/"; $this->view_path = "admin/"; $this->title = "관리자페이지 메인"; $this->helper = new CommonHelper(); } public function index(): string { helper(['form']); return view('admin/welcome_message', ['viewDatas' => $this->getViewDatas()]); } }