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 do I use eloquent to get a list of comments with one author each avoiding n+1 queries?
Name some inbuilt authentication controllers of laravel.
What is the function of die?
What do you mean by make() method?
Explain api.php route.
What is use of laravel?
How will you explain dd() function in laravel?
How can you retrieve values for laravel configration files.
What is laravel framework?
How do I register a middleware?
What are seeds in laravel?
What is asset in laravel?