How to Accessing Session Data in Laravel ?
Answer / amit khanna
To access the session data, we need an instance of session which can be accessed via HTTP request.
After getting the instance, we can use the get() method, which will take one argument, key, to get the session data.
Syntax : $value = $request->session()->get('key');
You can use all() method to get all session data instead of get() method.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is php artisan.
Is laravel good for ecommerce?
Is laravel easy?
What is laravel horizon?
What is a flush() ?
How to use cookies in laravel?
What is an artisan? Name some common artisan commands?
What is register method?
State the difference between get and post method.
Is laravel safe from sql injection?
What is blade template engine?
Explain how to localize resource uris in laravel?