Hi,
Okay... so here is the situation.
I have a Laravel 6.2 app running and Laravel Nova 2.9.4 also running.
I am using the default guard 'web' for logging users on the front-end (Laravel 6.2 app) and I have created a custom guard called 'admin' for Laravel Nova.
Everything works great, e.g., logging in using different guards, password resets for both guards... except!
Both guards are using same file-based or database-based session, therefore when I logout of either app using either guard, I am automatically logged out of both.
Ideally, when logging out, I should only be logging out of either the 'web' guard or the 'admin' guard.
The only way I can get it work is if I use a different browser completely, such as Chrome for the Laravel 6.2 front-end app and Safari or an Incognito Chrome browser window for Laravel Nova.
Either I am missing something simple, or don't fully understand how guards work. Either way, any advice would be greatly appreciated!
Thanks!
Rick