Separar datos inicio
This commit is contained in:
@ -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']);
|
||||
});
|
||||
|
8
app/resources/routes/api/ventas/cuotas.php
Normal file
8
app/resources/routes/api/ventas/cuotas.php
Normal 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']);
|
||||
});
|
Reference in New Issue
Block a user