Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Julian 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,985 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
}