Laravel 8: change landing page after login

In app/Providers/RouteServiceProvider.php change the line

public const HOME = 'dashboard';

to

public const HOME = '/';

This constant is used in app/Http/Controllers/Auth/RegisteredUserController in the store function

return redirect(RouteServiceProvider::HOME);