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 create subdomain routing in laravel 5?
What is a Terminable Middleware ?
What is the render method?
How facades are different from dependency injection?
How do I make a particular task run everyday by 10pm?
Explain me active record implementation?
What is a facade?
Does laravel passport use jwt?
What are view creators?
Explain service container?
What is blade php in laravel?
How can you write your own service provider in laravel.