Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJulian Cortes
3,549 PointsGetting List_id from Form (Nested Routes)
Hi! Im using laravel 5.1. There is not $list_id defined in the method 'store'. Im using the request to get the input variables. But how can I get the list_id ??
Thanks
1 Answer
thomascawthorn
22,986 PointsThis is how the url params transfer into the controller methods. So maybe you can grab the list_url from there?
$router->get('/model_one/{param_one}/model_two/{param_two}' [
'as' => 'some-name',
'uses' => 'SomeController'
]);
public function store(Request $request, $param_one, $param_two)
{
// The store method
}