Reputation: 3642
How to get all cookies in Laravel 4.*? With:
Cookie::get($name)
I can get only one but I need to get them all even if I do not know their names.
Upvotes: 7
Views: 13287
Reputation: 6319
If you omit the $name
, it should return all Cookies:
$cookies = Cookie::get();
Upvotes: 17