I use Laravel Framwork for all my php projects, and I am wondering if Laravel 5* store user critical information in session or cookies. I mean in server side or client side.
- Passwords are saved in the Database, whatever that database might be, but not in cookies nor in session.Dragos– Dragos2016-12-30 11:54:52 +00:00Commented Dec 30, 2016 at 11:54
- password does not stored in cookies or session. with laravel framework, it will encrypt the password the moment the data is pass into database.Jeffrey Cheong– Jeffrey Cheong2016-12-30 11:57:02 +00:00Commented Dec 30, 2016 at 11:57
- read Laravel Authentication Documentation for more detailsDragos– Dragos2016-12-30 11:58:11 +00:00Commented Dec 30, 2016 at 11:58
- sorry guys I will edit the question so that you could get my pointuser7357803– user73578032016-12-30 11:58:58 +00:00Commented Dec 30, 2016 at 11:58
- Laravel will store anything whereever you tell it to store it.Dragos– Dragos2016-12-30 12:03:44 +00:00Commented Dec 30, 2016 at 12:03
| Show 1 more comment