2023-09-13 18:51:46 -03:00
|
|
|
<?php
|
|
|
|
use Incoviba\Controller\Ventas\Pies;
|
|
|
|
use Incoviba\Controller\Ventas\Cuotas;
|
|
|
|
|
|
|
|
$app->group('/pie/{pie_id}', function($app) {
|
|
|
|
$app->group('/cuotas', function($app) {
|
|
|
|
$app->group('/add', function($app) {
|
|
|
|
$app->get('[/]', [Cuotas::class, 'add']);
|
|
|
|
$app->post('[/]', [Cuotas::class, 'doAdd']);
|
|
|
|
});
|
|
|
|
$app->get('[/]', [Pies::class, 'cuotas']);
|
|
|
|
});
|
2024-11-18 23:25:20 -03:00
|
|
|
$files = new FilesystemIterator(implode(DIRECTORY_SEPARATOR, [__DIR__, 'pies']));
|
|
|
|
foreach ($files as $file) {
|
|
|
|
if ($file->isDir()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
include_once $file->getRealPath();
|
|
|
|
}
|
2023-09-13 18:51:46 -03:00
|
|
|
});
|