I want to log the User Details whose session expires automatically how can I do that thing? my laravel version is 5.4
I want to do minimal changes as possible so can anyone help me in that
For Example :: when user logs in i have session session lifeTime 120 ie. 2 hours
and in my env Session_Driver is database as there is session table in mysql for maintaing the session and i want if anyone logs out including the automatic session expire when user gone
i want to create a logout log in my database for that user
In my Config.php its
'driver' => env('SESSION_DRIVER', 'file');
@Snapey
whenever the user session expires i want to make a logout log in my db so that i can say hey you have logged out due to session expired
so what’s the best way to do that?