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