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

9 lines
265 B
PHP
Raw Normal View History

2023-10-11 09:03:44 -03:00
<?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']);
});