Im trying to implement session using db as driver..upon login the session was save into the database. No problem. When I used session destroy during logout , the entry on the database is destroyed. When I try to login and create a new session using Session::create() nothing was save into the database?? Is there something that I have missed? I am currently checking this for a week please help me. Thanks..
There's no need to manually create a new session, the only reason for calling create() is if you want to destroy one session, and immediately create a new one. Otherwise, a session is automatically created if there is no active session, and session data is present.