Files
oficial/app/resources/routes/04_ventas.php
2023-07-24 20:55:26 -04:00

11 lines
281 B
PHP

<?php
$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();
}
});