Michal
Michal

Reputation: 3642

Laravel 4.*: Get all cookies

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

Answers (1)

Scopey
Scopey

Reputation: 6319

If you omit the $name, it should return all Cookies:

$cookies = Cookie::get();

Upvotes: 17

Related Questions