When a /logout is actioned it's destroying the sessions, is there a way to prevent this? We're working on a system where users add items to their bag which we are storing in the session. Ideally we want it so that if they logout and log back in it remembers the session.
In use Illuminate\Foundation\Auth\AuthenticatesUsers;
$request->session()->invalidate();