2023-11-22 19:08:19 -03:00
|
|
|
<?php
|
|
|
|
use Incoviba\Controller\API\Ventas\Facturacion;
|
|
|
|
|
|
|
|
$app->group('/facturacion', function($app) {
|
|
|
|
$app->get('/proyecto/{proyecto_id}[/]', [Facturacion::class, 'proyecto']);
|
2024-04-29 18:35:44 -04:00
|
|
|
$app->post('/get[/]', [Facturacion::class, 'ventas']);
|
2023-11-22 19:08:19 -03:00
|
|
|
});
|