6. Tạo response Đính kèm cookie cho response (Attaching cookie to response)(ok)
https://viblo.asia/p/tap-17-response-laravel-aWj534RGK6m
Với method cookie
trên response object cho phép chúng ta dễ dàng đính kèm một cookie đến response. Chẳng hạn:
return response($content)
->header('Content-Type', $type)
->cookie('name', 'value', $minutes);
Method cookie
này cũng nhận các tham số đặc biệt khác như setcookie
của PHP.
->cookie($name, $value, $minutes, $path, $domain, $secure, $httpOnly)
Last updated
Was this helpful?