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 write php code in laravel blade?
How to retrive all requested data in laravel?
In which folder robot.txt is placed?
Explain the concept of routing in laravel.
How to use update statement in laravel?
What is a Artisan command ?
How secure is laravel?
Explain dependency injection?
Explain how to share sites with external world on valet?
Do you know what developed the laravel?
How can you exclude uris from csrf protection in laravel?
Explain important directories used in a common laravel application.