bestmomo / laravel5-example

Simple laravel5 example for tutorial
MIT License
1.2k stars 568 forks source link

Session set error #69

Closed mirzavu closed 8 years ago

mirzavu commented 8 years ago

$request->session()->put('key', 'value');

When i set session in the controller I get the below error

"Session store not set on request"

mirzavu commented 8 years ago

Error fixed 1) Add Request to top of the class:

use Illuminate\Http\Request; 2) pass Request class object to controller

eg: public function index(Request $request)

3) Now set the session using

$request->session()->put('anykey', 'anyvalue');