Informe tesoreria en excel

This commit is contained in:
Juan Pablo Vial
2024-02-23 22:37:09 -03:00
parent 5156858205
commit cfe18c1909
14 changed files with 809 additions and 131 deletions

View File

@ -0,0 +1,6 @@
<?php
use Incoviba\Controller\Contabilidad\Informes;
$app->group('/xlsx', function($app) {
$app->get('/tesoreria/{fecha}[/]', [Informes::class, 'tesoreria']);
});