I am using Laravel Framework version 4.1.21 and the "expire_on_close" option does not end the session in Chrome when the browser is closed. The options in my config/session.php file look like this:
'driver' => 'file',
'lifetime' => 120,
'expire_on_close' => true,
Also in the developer toolbar, under Resources > Cookies, the Expires value is set to "Session" for the laravel_session cookie.
This works fine in Firefox though. Any ideas what am I missing ? Thanks !