I have changed the protected $redirectTo = '/tasks'; in both the LoginController and RegisterController. Also, I have changed the redirect path in the middleware RedirectIfAuthenticated as follows:
public function handle($request, Closure $next, $guard = null)
{
if (Auth::guard($guard)->check()) {
return redirect('/tasks');
}
return $next($request);
}
Even though I have done these changes, nothing works, and the pages are redirected to the /login path.
That's because
$redirectTo
will take effect after you have logged in. First of all you need to login. That's why it's sending you to/login
path. So if you want to change where it redirects afterLogin
orRegistration
, you change those$redirectTo
properties. If you don't want a user to login at all, you should remove theauth
middleware for that route.EDIT: So what you have missed is that laravel redirects you back to the intended page and if there is none it will redirect to $redirectTo. So if you try to go to homepage and that needs authenticated user, after login it redirects back to the homepage and not /tasks because that's where you were trying to go. If you want to always redirect to that path and not to intended path you can do something as below.
Add this code to your
LoginController
and you will always be redirected to$redirectTo
.