I want to set cookies in Laravel 5 independently
i.e., Don't want to use
return response($content)->withCookie(cookie('name', 'value'));
I just want to set cookie in some page and retrieve in some other page
Creation can be like this
$cookie = Cookie::make('name', 'value', 60);
But how can i retrieve those cookies in some controller itself ?
You may try this:
This will queue the cookie to use it later and later it will be added with the response when response is ready to be sent. You may check the documentation on
Laravel
website.Update (
Retrieving A Cookie Value
):Note: If you set a cookie in the current request then you'll be able to retrieve it on the next subsequent request.
Here is a sample code with explanation.
Cookie can be set forever by using the forever method as shown in the below code.
Retrieving a Cookie
You are going right way my friend.Now if you want retrive
cookie
anywhere in project just put this code$val = Cookie::get('COOKIE_NAME');
That's it! For more information how can this done click hereIf you want to set cookie and get it outside of request, Laravel is not your friend.
Laravel cookies are part of Request, so if you want to do this outside of Request object, use good 'ole PHP setcookie(..) and $_COOKIE to get it.