Files
oficial/app/resources/routes/ventas/pagos.php
Juan Pablo Vial fa15da1ee2 Ventas
2023-09-07 23:03:21 -03:00

7 lines
148 B
PHP

<?php
use Incoviba\Controller\Ventas\Pagos;
$app->group('/pagos', function($app) {
$app->get('/pendientes', [Pagos::class, 'pendientes']);
});