We can override this property to redirect users after login in LoginController:
protected $redirectTo = \'/home\';
And here is the statement fr
I think the issue comes from the web.php routes. I problem went away after I set the default '/' route to point to the login page.
Route::get('/', function () { return redirect(route('login')); });