1 Answer 3926 Views
Go to your session.php file inside the config directory.
In the session lifetime section, you can see the session's expire_on_close array with value set as false as shown below.
'expire_on_close' => false,
Set it as true as shown below and you're done with it.
'expire_on_close' => true,
Leave a comment