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.

40 lines
775 B
PHTML

2 years ago
<?php
namespace App\Http\Controllers\Front;
use App\Http\Controllers\Controller;
use Illuminate\Contracts\View\View;
use App\Libs\TraitBoard;
class IndexController extends Controller
{
use TraitBoard;
protected $page = [
'code' => 'index',
'title' => '',
'subTitle' => '',
'description' => '',
'link' => '/',
'is_main' => true
];
/**
* 홈페이지 메인
*
* @Verb : GET
* @Path : /
* @return View
*/
public function index()
{
2 years ago
// $data = [
// 'notice' => $this->getLatest('notice'),
// 'news' => $this->getLatest('news'),
// ];
2 years ago
2 years ago
// return $this->setView('index', $data);
return $this->setView('index');
2 years ago
}
}