group('/proyectos', function($app) { $app->get('[/]', \Incoviba\UI\Common\Controller\Proyectos::class); }); $app->group('/proyecto/{proyecto_id}', function($app) { $app->group('/precios', function($app) { $app->get('/add', [\Incoviba\UI\Common\Controller\Precios::class, 'add']); $app->get('[/]', [\Incoviba\UI\Common\Controller\Proyectos::class, 'precios']); }); });