How to Accessing Session Data in Laravel ?



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

Post New Answer

More Laravel PHP Framework Interview Questions

What is reverse path filtering?

0 Answers  


List some features of laravel 5.0?

0 Answers  


How to extend a layout file in laravel view?

0 Answers  


Define @include.

0 Answers  


I just installed laravel and have the evil whoops error,how do I find out what’s wrong and fix it?

0 Answers  


What is luman?

0 Answers  


Is laravel secure?

0 Answers  


What is bearer token?

0 Answers  


Tell me what is current stable version of laravel?

0 Answers  


How to access session data?

0 Answers  


What is closure in laravel?

0 Answers  


What is fluent query builder in laravel?

0 Answers  


Categories