Unable to store cookie with the following code in Laravel 5.4
$row = cookie('name', 'value', 52400);
This one is also not working
Cookie::queue(Cookie::make('name', 'value', 'minutes'));
Can you please have a look into this,what can be the issue ?
Cookie::queue(Cookie::make('name', 'value', 'minutes'));? LikeCookie::queue(Cookie::make('myCookie', true, 60));?