2024-06-18 22:41:03 -04:00
|
|
|
<?php
|
|
|
|
use Incoviba\Controller\API\Ventas\Facturas;
|
|
|
|
|
|
|
|
$app->group('/facturas', function($app) {
|
|
|
|
$app->post('/add[/]', [Facturas::class, 'add']);
|
|
|
|
});
|
2025-01-17 16:55:46 -03:00
|
|
|
$app->group('/facturas/{factura_id}', function($app) {
|
|
|
|
$app->post('/edit[/]', [Facturas::class, 'edit']);
|
|
|
|
});
|