Hello World, Today we will learn how to change the default auth login redirect in Laravel 7. If you are using the Laravel authentication system then you will see that after successful login, you will be redirected on the ‘/home’ path. But if you want to change the default path then you need to change some code in the following file.
app/Providers/RouteServiceProvider.php
from
public const HOME = '/home';
to
public const HOME = '/your-path';