2023-11-22 19:08:19 -03:00
|
|
|
<?php
|
|
|
|
use Incoviba\Controller\Ventas\Facturacion;
|
|
|
|
|
|
|
|
$app->group('/facturacion', function($app) {
|
|
|
|
$app->get('[/]', Facturacion::class);
|
|
|
|
});
|
2023-11-29 20:09:08 -03:00
|
|
|
$app->group('/factura/{venta_id}', function($app) {
|
|
|
|
$app->get('[/]', [Facturacion::class, 'show']);
|
|
|
|
});
|