I recently ran into a frustrating issue with Laravel Nova. After logging out, instead of being redirected to my main site's login page, Nova would stubbornly redirect me back to its own login page. This unexpected behavior was a minor inconvenience but nonetheless annoying.
Upon further investigation, I discovered the root cause: a less-known Nova configuration setting called nova.routes.login
. This setting, located in Laravel\Nova\Exceptions\AuthenticationException
, controls the redirect URL after logout. By default, it's set to /nova/login
, which explains the unwanted behavior.
To fix this, I made a simple adjustment to the Nova configuration file. I opened config/nova.php
and located the routes
array. Within this array, I found the login
key and changed its value to /login
, which is the URL of my main site's login page.
Here's how the modified configuration looks:
'routes' => [
'login' => '/login',
],
With this simple change, Nova now redirects users to my main site's login page after logging out.
A Quick Tip
If you're using a custom login route, simply update the login
value to match your custom URL.
By understanding this hidden configuration and making a minor adjustment, you can easily resolve this issue and improve the user experience of your Laravel Nova application.
Top comments (0)