14 lines
351 B
PHP
14 lines
351 B
PHP
<?php
|
|
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();
|
|
}
|
|
$app->get('[/]', Ventas::class);
|
|
});
|