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 reverse path filtering?
List some features of laravel 5.0?
How to extend a layout file in laravel view?
Define @include.
I just installed laravel and have the evil whoops error,how do I find out what’s wrong and fix it?
What is luman?
Is laravel secure?
What is bearer token?
Tell me what is current stable version of laravel?
How to access session data?
What is closure in laravel?
What is fluent query builder in laravel?