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