'홈', 'link' => '/cms'] ]; // Page Header protected $page = [ 'code' => 'cms.home', 'title' => '청담K', 'icon' => 'fa-home', 'description' => '', 'link' => '/cms' ]; /** * Create a new controller instance. * * @return void */ public function __construct() { // $this->middleware('auth'); } /** * Show the application dashboard. * * @return \Illuminate\Contracts\Support\Renderable */ public function index() { $data = []; return $this->setView('admin.index', $data); } }