Laravel 4 - Queueing a cookie forever
cookies, laravel, laravel-4
Solution
Cookie::queue($name, $value, 2628000)
If you look at the `Cookie::forever()` code, it defines "forever" as `2628000` (five years)
Problem
In Laravel 4, is there a way to set a queue a cookie that last forever? Basically I want to mix the functionality of: ``` Cookie:queue() ``` and ``` Cookie:forever() ```