I instanced an Auth using a personalized driver called CoescoAuth (Auth::instance('CoescoAuth')) and in the login page I do this (Auth::instance('CoescoAuth')->login()), but when I go to another page I cannot retrieve the logged user. I've checked and in the login page, the login happens, but in another page I cannot load the user.
Assuming your driver stores the correct login information in the session, you should check if your sessions are configured correctly.
Most common issue is incorrect time or timezone settings: - check the server time and timezone - make sure the same timezone is configured in php.ini - make sure the same timezone is configured in your config file - do not define a gmt-offset in your config file - check if your PC time and timezone are correct
You can quickly check if this is the issue by setting the session expiry time to 0.