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.
45 lines
837 B
PHTML
45 lines
837 B
PHTML
2 years ago
|
<?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.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);
|
||
|
}
|
||
|
}
|