diff --git a/app/resources/routes/api/ventas/facturas.php b/app/resources/routes/api/ventas/facturas.php index 697f1b0..fb97561 100644 --- a/app/resources/routes/api/ventas/facturas.php +++ b/app/resources/routes/api/ventas/facturas.php @@ -4,3 +4,6 @@ use Incoviba\Controller\API\Ventas\Facturas; $app->group('/facturas', function($app) { $app->post('/add[/]', [Facturas::class, 'add']); }); +$app->group('/facturas/{factura_id}', function($app) { + $app->post('/edit[/]', [Facturas::class, 'edit']); +});