[bug] Auth filter still redirects to /login not auth/login
if you use make:auth it defaults to auth/login for a path. But if you look at the Auth filter it defaults to /login as a path.
This commit is contained in:
parent
2fb780b63f
commit
5eaaadc204
|
@ -23,7 +23,7 @@ public function filter(Route $route, Request $request)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return Redirect::guest('login');
|
return Redirect::guest('auth/login');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue