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

7 lines
130 B
PHP
Raw Normal View History

2023-07-25 17:03:57 -04:00
<?php
use Incoviba\Controller\Ventas\Cierres;
$app->group('/cierres', function($app) {
$app->get('[/]', Cierres::class);
});