If I open my app from two tabs and log out from the first one (with Session::flush();, the second tab is still logged in on refresh. How to fix that?
I use Laravel 5.1 and Session driver - file.
If I open my app from two tabs and log out from the first one (with Session::flush();, the second tab is still logged in on refresh. How to fix that?
I use Laravel 5.1 and Session driver - file.
You will need to do Auth::logout to completely logout the user.