Commit f0e49550 authored by Nicolas Widart's avatar Nicolas Widart

Changing controllers for now structure

parent bf70b741
<?php namespace Modules\Core\Http\Controllers\Admin;
use Illuminate\Routing\Controller;
class AdminBaseController extends Controller
/**
* @Before("auth.admin")
*/
class AdminBaseController
{
public function __construct()
{
$this->beforeFilter('auth.admin');
//$this->beforeFilter('auth.admin');
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment