Files
oficial/app/resources/routes/api/inmobiliarias/proveedores.php
Juan Pablo Vial 390e79ad6d 2024-06-18
2024-07-16 16:17:24 -04:00

12 lines
372 B
PHP

<?php
use Incoviba\Controller\API\Inmobiliarias\Agentes;
$app->group('/proveedores', function($app) {
$app->post('/add[/]', [Agentes::class, 'add']);
$app->post('/register[/]', [Agentes::class, 'register']);
$app->get('[/]', Agentes::class);
});
$app->group('/proveedor/{agente_id}', function($app) {
$app->post('/edit[/]', [Agentes::class, 'edit']);
});