Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the use of "laravel_session" cookie?

So i have created a project and right now i have to give information about every cookie that it is used. I am using laravel 5.0 and the cookies that are used by laravel are the below :

1) laravel_session
2) XSRF-TOKEN

I know about the second one, but i can't find information about the first one. Is it about knowing the current user? The project also uses socialite - facebook.

Please, if you need any further information feel free to ask and i will provide.

like image 606
Antonios Tsimourtos Avatar asked Jun 29 '17 07:06

Antonios Tsimourtos


1 Answers

Internally laravel uses laravel_session to identify a session instance for a user, this can be changed by going into config/session.php and editing the cookie value

like image 66
Ian Avatar answered Sep 18 '22 18:09

Ian