Laravel 5 store session in database/redis
All you need to do is specify the right driver in the environment file, and generate the schema as outlined in the documentation.
This line:
'driver' => env('SESSION_DRIVER', 'database')
This is telling the config to get the SESSION_DRIVER
variable from your environment file, and use database
as a default. I can only assume you have forgotten to update your .env
file.