2023-12-04 21:43:57 -03:00
|
|
|
<?php
|
|
|
|
use Incoviba\Controller\Ventas\Escrituras;
|
|
|
|
|
|
|
|
$app->group('/escritura/{venta_id}', function($app) {
|
2024-01-18 16:41:16 -03:00
|
|
|
$app->get('/informe[/]', [Escrituras::class, 'informe']);
|
2023-12-04 21:43:57 -03:00
|
|
|
$app->get('[/]', [Escrituras::class, 'show']);
|
|
|
|
});
|