Files
oficial/app/resources/routes/api/ventas/propiedades.php

11 lines
291 B
PHP
Raw Normal View History

2023-11-29 20:09:08 -03:00
<?php
$app->group('/propiedades', function($app) {
$files = new FilesystemIterator(implode(DIRECTORY_SEPARATOR, [__DIR__, 'propiedades']));
foreach ($files as $file) {
if ($file->isDir()) {
continue;
}
include_once $file->getRealPath();
}
});