I have the following code where I loop through the items in the session array and change the value. How can I save it back to the session?
foreach(Session::get('cart.program') as &$item) {
if ($item['id'] == '1xxx') {
item['id'] = '2xxx';
break;
}
}