下面是App/Exceptions/Handle.php里的代码
protected function unauthenticated($request, AuthenticationException $exception)
{
if ($request->expectsJson()) {
return response()->json(['error' => 'Unauthenticated.'], 401);
}
return redirect()->guest('login');
}
是在这里面判断guard是哪种吧? 这一步判断我不知道怎么获取到guard的类型,有没有什么方法。