Laravel 5.5 更改未经身份验证的登录重定向 url
2022-08-30 11:51:22
在我可以更改此文件以更改未经身份验证的用户重定向URL中:Laravel < 5.5
app/Exceptions/Handler
protected function unauthenticated($request, AuthenticationException $exception)
{
if ($request->expectsJson()) {
return response()->json(['error' => 'Unauthenticated.'], 401);
}
return redirect()->guest(route('login'));
}
但是在这个已经移动到这个位置,所以我现在如何改变它?我不想更改供应商目录中的内容,以防它被作曲家更新覆盖。Laravel 5.5
vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php
protected function unauthenticated($request, AuthenticationException $exception)
{
return $request->expectsJson()
? response()->json(['message' => 'Unauthenticated.'], 401)
: redirect()->guest(route('login'));
}