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,
Sign in to help the community by answering this question.
Log In to Answer
Comments