laravel 用户跳转登录路由在哪改啊?

就是加了middleware后未登录用户跳转登录的那个路由~~

Http/Middleware/Authenticate.php里面的:

if (Auth::guard($guard)->guest()) {
            if ($request->ajax() || $request->wantsJson()) {
                return response('Unauthorized.', 401);
            } else {
                return redirect()->guest('login');//改这一行试试
            }
        }
JellyBool
修改的评论也不能少于六个字哦!
axhello
修改的评论也不能少于六个字哦!