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 trial

PHP Nested CRUD with Laravel 4 Nested Routes & Controllers Nested Creation

Julian Cortes
Julian Cortes
3,549 Points

Getting 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

This is how the url params transfer into the controller methods. So maybe you can grab the list_url from there?

routes.php
$router->get('/model_one/{param_one}/model_two/{param_two}' [
    'as'     => 'some-name',
    'uses' => 'SomeController'
]);
SomeController.php
public function store(Request $request, $param_one, $param_two)
{
    // The store method
}