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