group('/proyectos', function($app) { $app->get('/segmento/{segmento}', [Proyectos::class, 'segmento']); $app->get('/destacados/{page}', [Proyectos::class, 'destacados']); $app->get('[/]', Proyectos::class); }); $app->group('/proyecto/{proyecto}', function($app) { $app->get('/ficha', [Proyectos::class, 'ficha']); $app->get('[/]', [Proyectos::class, 'show']); });