why we use Laravel - Session ?
Answer / sunil kumar
Sessions are used to store information about the user across the requests.
Laravel provides various drivers like file, cookie, apc, array, Memcached, Redis, and database to handle session data.
By default, file driver is used because it is lightweight.
Session can be configured in the file stored at config/session.php.
Is This Answer Correct ? | 0 Yes | 0 No |
What is slug in laravel?
How can we handle Error Handling in Laravel ?
How to configure cron jobs in homestead?
What is homestead in laravel?
How to retrive current environment in laravel?
What are accessors and mutators in eloquent and why should you use them?
List some use valet commands?
What do you understand by lumen?
What is auth? How is it used?
What is the use of db facade?
What is the difference between laravel and symfony?
What is named route?