Feb 19, 2019
0
Level 1
Cookie to response
Hello, I requested illuminate/cookie,
$app->singleton('cookie', function () use ($app) {
return $app->loadComponent('session', 'Illuminate\Cookie\CookieServiceProvider', 'cookie');
});
$app->bind('Illuminate\Contracts\Cookie\QueueingFactory', 'cookie');
...
$app->middleware([
'Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse'
]);
but not getting Cookie from request to response
Please or to participate in this conversation.