php - With Laravel 4 is there a way to stop it from creating a session when a user access a page? -
i have notice every time load page first time (new user) creates new session. want disable that. want creation of session when user logins in.
so there way tell laravel 4 not create new session every time new person comes website?
you try setting session driver blank string prevent laravel creating session
config::set('session.driver','');
Comments
Post a Comment