I have a function inside a controller where I set a value for oa.action cookie:
public function setActionCookie($action) { $actionCookie = cookie("oa.action", $action, 30, '/', null, true, false, false, 'None'); Cookie::queue($actionCookie); } Everything works when I use the Inspector panel, $action always has a value but when I try to output cookies values with dd($request->cookie());, I always get "oa_action" => null
Any idea why?