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 |
List some features of laravel 5.0?
What are contracts?
How to create custom library in laravel?
How do I register a middleware?
What is laravel elixir?
Explain dependency injection?
What is laravel homestead?
Which class is used to handle exceptions?
Explain how to get current url in laravel?
Can you explain about serialization?
Tell me what is the purpose of using dd() function iin laravel?
What is php artisan in laravel?