2024-01-09 23:35:35 -03:00
|
|
|
<?php
|
|
|
|
$app->group('/contabilidad', function($app) {
|
|
|
|
$files = new FilesystemIterator(implode(DIRECTORY_SEPARATOR, [__DIR__, 'contabilidad']));
|
|
|
|
foreach ($files as $file) {
|
|
|
|
if ($file->isDir()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
include_once $file->getRealPath();
|
|
|
|
}
|
2025-07-22 13:18:00 +00:00
|
|
|
})->add($app->getContainer()->get(Incoviba\Middleware\Authentication::class));
|