Editar propiedad en venta
This commit is contained in:
@ -1,6 +1,10 @@
|
||||
<?php
|
||||
use Incoviba\Controller\API\Ventas\PropiedadesUnidades;
|
||||
|
||||
$app->group('/unidades', function($app) {
|
||||
$app->post('/add[/]', [PropiedadesUnidades::class, 'add']);
|
||||
});
|
||||
$app->group('/unidad/{pu_id}', function($app) {
|
||||
$app->post('/edit[/]', [PropiedadesUnidades::class, 'edit']);
|
||||
$app->delete('[/]', [PropiedadesUnidades::class, 'remove']);
|
||||
});
|
||||
|
Reference in New Issue
Block a user