how can I redirect from my controller to a named route and include variables in the URL, e.g.
return Redirect::to('admin/articles/create/'.$article_type.'/'.$area_id.'/'.$area_type);
this works, but I think that I missed a shortcut or something?
Laravel offers an easy way to redirect a user to a specific page. By using the redirect() helper you can easily create a redirect like the following: return redirect('/home'); This will redirect the user to the /home page of your app.
In Laravel 5, you can use the helper methods:
return redirect()->route('route.name', [$param]);
You can use Redirect::route()
to redirect to a named route and pass an array of parameters as the second argument
Redirect::route('route.name',array('param1' => $param1,'param2' => $param2))
Hope this helps.
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