i'm using laravel 7. in previous laravel versions when i wanted to change the page i intend to redirect to, i just change this line in the LoginController.php file.
protected $redirectTo = '/home';
i would change the 'home' url to something else. Now i'm trying to so the same thing and i've already changed it to
protected $redirectTo = '/todos';
Still it redirects me to 'home'. Also, i already have the 'todo' route registered.
Hard to say what's not working if you made many changes to the built-in Authentication, if you have highly customized it then without your code it's hard to see what's going on.