中间件
Auth 中间件
Auth 中间件 必须 书写在控制器的 __construct
方法中,并且 必须 使用 except
黑名单进行过滤,这样当你新增控制器方法时,默认是安全的。
public function __construct()
{
$this->middleware('auth', [
'except' => ['show', 'index']
]);
}
Auth 中间件 必须 书写在控制器的 __construct
方法中,并且 必须 使用 except
黑名单进行过滤,这样当你新增控制器方法时,默认是安全的。
public function __construct()
{
$this->middleware('auth', [
'except' => ['show', 'index']
]);
}
本文章首发在 LearnKu.com 网站上。
粤ICP备18099781号-6 | 粤公网安备 44030502004330号 | 违法和不良信息举报
由 Summer 设计和编码 ❤
推荐文章: