Files
oficial/app/resources/routes/04_ventas.php

14 lines
351 B
PHP
Raw Normal View History

<?php
2023-07-28 16:22:20 -04:00
use Incoviba\Controller\Ventas;
$app->group('/ventas', function($app) {
$files = new FilesystemIterator(implode(DIRECTORY_SEPARATOR, [__DIR__, 'ventas']));
foreach ($files as $file) {
if ($file->isDir()) {
continue;
}
include_once $file->getRealPath();
}
2023-07-28 16:22:20 -04:00
$app->get('[/]', Ventas::class);
});