7 lines
162 B
PHP
7 lines
162 B
PHP
<?php
|
|
use Incoviba\Controller\Contabilidad;
|
|
|
|
$app->group('/tesoreria', function($app) {
|
|
$app->get('[/[{fecha}[/]]]', [Contabilidad::class, 'tesoreria']);
|
|
});
|