Files
oficial/app/resources/routes/api/ventas/cierres.php
2023-10-11 09:03:44 -03:00

8 lines
210 B
PHP

<?php
use Incoviba\Controller\API\Ventas\Cierres;
$app->group('/cierres', function($app) {
$app->get('/vigentes[/]', [Cierres::class, 'vigentes']);
$app->post('[/]', [Cierres::class, 'proyecto']);
});