Files
oficial/app/resources/routes/api/ventas/cierres.php

8 lines
210 B
PHP
Raw Normal View History

2023-07-25 17:03:57 -04:00
<?php
2023-10-11 09:03:44 -03:00
use Incoviba\Controller\API\Ventas\Cierres;
2023-07-25 17:03:57 -04:00
$app->group('/cierres', function($app) {
2023-10-11 09:03:44 -03:00
$app->get('/vigentes[/]', [Cierres::class, 'vigentes']);
2023-07-25 17:03:57 -04:00
$app->post('[/]', [Cierres::class, 'proyecto']);
});