Have you checked your AuthController? There's a protected variable with the name $redirectTo that should be configured to point to wherever you want the authenticated user to go when they login.
Thanks for your reply.
I added this:
protected $redirectTo = '/users/login';
But it is doing the same.
AtomicRSA said:
Thanks for your reply.
I added this:
protected $redirectTo = '/users/login';
But it is doing the same.
You need to set the $redirectTo variable to where the users go after they are authenticated.
For example when they log in, they are redirected to /home or /privatearea
Hi
I did change it to:
protected $redirectTo = '/dashboard';
And it does the same :(
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community