Laravel Redis Session Driver doesn't work
I've found the solution thanks to the tip from @philo.
The session lifetime in my config file was set to zero
, because I want my session to expire on browser close. That works for native sessions, but for redis sessions it causes the session to expire immediately. When I change the life time, my session works as expected.
Now I'm still searching how to expire on browser close