I have written this code, that sets a cookie in client's browser, and after that must redirect the client to 'home' route,
$response = new Response();
$response->withCookie(cookie()->forever('language', $language));
$response->header('Location' , url('/home')) ;
return $response ;
the client receives these headers but the client doesn't make request for the "home" route
how should I do both, setting the cookie and redirect the user?
Why don't you do return Redirect::to('home');
Of course you can use chaining to do more things, both in L4 and L5.
L4: return Redirect::to('home')->withCookie($cookie);
L5: return redirect('home')->withCookie($cookie);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With