group('/ventas', function ($app) { $app->post('/add[/]', [Ventas::class, 'add']); $app->get('[/]', Ventas::class); }); $app->group('/venta/{venta_id}', function ($app) { $app->put('/edit[/]', [Ventas::class, 'edit']); $app->delete('/edit[/]', [Ventas::class, 'delete']); $app->get('[/]', [Ventas::class, 'show']); });