Hello, community. Please, help me.
When i set cookies
$this->getDI()->get('cookies')->set('sample_cookie','sample_value',time()+9000);
, and then do a redirect to another page
$response = new Response();
$response->redirect('sample/page');
return $response;
cookies are not set.
How i can make redirect to another page with all cookies that have been set in previous controller?