Level 122
You are not setting anything on the session
Summer Sale! All accounts are 50% off this week.
I have created laravel session array which is working fine. I need to update array values with new data and for this I am using php function array_replace.
$arr=$request->session::get('key');
$a1=$arr[1];
array_replace($a1,$request);
$request->session::set('key');
But array in session not updated wth data in Request
Please or to participate in this conversation.