[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:
@@ -23,7 +23,7 @@ class AuthFilter {
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return Redirect::guest('login');
|
return Redirect::guest('auth/login');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user