'index', 'title' => '', 'subTitle' => '', 'description' => '', 'link' => '/', 'is_main' => true ]; /** * 홈페이지 메인 * * @Verb : GET * @Path : / * @return View */ public function index() { $data = [ 'notice' => $this->getLatest('notice'), 'news' => $this->getLatest('news'), ]; return $this->setView('index', $data); } }