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

9 lines
265 B
PHP

<?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']);
});