Hello all, i have something like this
return response()->view('welcome',['phonesSeen'=> $phonesSeen, 'popular'=>$popular])->withCookie($cookie);
which works great. My question is, how do i check if the cookie exists and is NOT empty?
i tried something like this without luck
if (Cookie::get('myCookie') !== false) {
//dfkmldsfl,ds
}
Any lights on this one? Thanks in advance
You can get cookies from request:
$value = Request::cookie('name', $defaultValue);
if (Request::hasCookie('phone')) {
...
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community