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