13 lines
424 B
PHP
13 lines
424 B
PHP
<?php
|
|
use Incoviba\Controller\API\Contabilidad;
|
|
|
|
$app->group('/cartolas', function($app) {
|
|
$app->post('/procesar[/]', [Contabilidad::class, 'procesarCartola']);
|
|
});
|
|
$app->group('/cartola', function($app) {
|
|
$app->group('/diaria', function($app) {
|
|
$app->post('/procesar[/]', [Contabilidad::class, 'procesarCartolaDiaria']);
|
|
});
|
|
$app->post('/exportar[/]', [Contabilidad::class, 'exportarCartola']);
|
|
});
|