You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
714 B
PHP

<?php
namespace App\Http\Controllers\Admin;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class IndexController extends Controller
{
protected $breadcrumbs = [
['title' => '홈', '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);
}
}