In my current application, every (anonymous) user has a session with some data in it, which are important for the functionality of the page, mostly restrictions and limits for distinct actions or queries.
When the user now removes the session cookie of the Laravel 5 application, Laravel does not retrieve the "old session" of the user, though he is still using the same user-agent/browser and the same IP.
Is it possible to reassign the old session to the anonymous user (in case the session is still available)? If yes, how can I achieve this?
PS: I don't want to force users to register themself on my page to interact with her, so a session-based solution is needed. I'm aware that every session-based solution can be overcome, but some "standard situations" should be covered though.