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