'홈', 'link' => '/cms'] ]; // Page Header protected $page = [ 'code' => 'cms.index', 'title' => '', 'icon' => 'fa-home', 'description' => '', 'link' => '/cms' ]; /** * Show the application dashboard. * * @return \Illuminate\Contracts\Support\Renderable */ public function index() { $data = []; $this->page['title'] = config('app.name'); return $this->setView('admin.index', $data); } }