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 |
How to add multiple and conditions in laravel query?
How facades are different from dependency injection?
Explain how to create custom middleware in laravel?
How to do 301 redirects in laravel?
What is auth in laravel?
How do I use sub-domain routing?
What are the databases laravel supports?
What are class traits?
How to get configuration values in laravel?
How to remove a complied class file?
How to clear cache in laravel?
How to stop valet?