Separar datos inicio

This commit is contained in:
2023-10-11 09:03:44 -03:00
parent e4328d8604
commit 0d558b7980
9 changed files with 327 additions and 119 deletions

View File

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

View File

@ -0,0 +1,8 @@
<?php
use Incoviba\Controller\API\Ventas\Cuotas;
$app->group('/cuotas', function($app) {
$app->get('/hoy[/]', [Cuotas::class, 'hoy']);
$app->get('/pendiente[/]', [Cuotas::class, 'pendiente']);
$app->get('/vencer[/]', [Cuotas::class, 'porVencer']);
});