Files
oficial/app/resources/routes/ventas/pagos.php

7 lines
148 B
PHP
Raw Normal View History

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