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