Editar valor venta

This commit is contained in:
2023-12-04 19:00:21 -03:00
parent 57579a52f1
commit 377cf51b44
5 changed files with 69 additions and 61 deletions

View File

@ -24,5 +24,6 @@ $app->group('/ventas', function($app) {
$app->group('/venta/{venta_id}', function($app) {
$app->get('/unidades', [Ventas::class, 'unidades']);
$app->get('/comentarios', [Ventas::class, 'comentarios']);
$app->post('[/]', [Ventas::class, 'edit']);
$app->get('[/]', [Ventas::class, 'get']);
});