I'm using Laravel 5.2 and sessions don't seem to be saving.
I've tried both file and database (after creating the sessions table) and neither seem to work.
I've set the file permissions to 777 on storage/framework/sessions and no sessions file is created.
To save a session I'm using:
session(['key' => 'value']);
and to retrieve the session I'm using:
$value = session('key');
But I can't get it to save