Files
oficial/app/resources/routes/api/contabilidad/cartolas.php

15 lines
514 B
PHP
Raw Normal View History

2024-01-17 10:33:11 -03:00
<?php
2024-02-12 09:52:48 -03:00
use Incoviba\Controller\API\Contabilidad\Cartolas;
2024-01-17 10:33:11 -03:00
$app->group('/cartolas', function($app) {
2024-02-12 09:52:48 -03:00
$app->post('/procesar[/]', [Cartolas::class, 'procesar']);
2024-07-17 22:33:33 -04:00
$app->post('/importar[/]', [Cartolas::class, 'importar']);
2024-01-17 10:33:11 -03:00
});
$app->group('/cartola', function($app) {
2024-02-07 23:48:31 -03:00
$app->group('/diaria', function($app) {
2024-02-12 09:52:48 -03:00
$app->post('/ayer[/]', [Cartolas::class, 'ayer']);
$app->post('/procesar[/]', [Cartolas::class, 'diaria']);
2024-02-07 23:48:31 -03:00
});
2024-02-12 09:52:48 -03:00
$app->post('/exportar[/]', [Cartolas::class, 'exportar']);
2024-01-17 10:33:11 -03:00
});