Try a regular session to see if it works:
In controller set something:
$mytest = "working";
Session::put('mytest', $mytest);
And in view see if it works:
echo Session::get('mytest');
or use blade.
Forgot to mention, make sure that app\storage folder has proper permissions.
jimgwhit I wrote I test this and it work only if controller not return view object, permissions should also don't have anything with it because I test it on windows and also with cookies that not need any permission.
However, I found finally were I've got a bug, it was because in layout that I extend in my view has
<?php flush();?>
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community