Files
oficial/app/resources/routes/api/inmobiliarias/proveedores.php

12 lines
372 B
PHP
Raw Normal View History

2024-04-02 23:02:52 -03:00
<?php
use Incoviba\Controller\API\Inmobiliarias\Agentes;
2024-06-18 22:41:03 -04:00
$app->group('/proveedores', function($app) {
2024-04-02 23:02:52 -03:00
$app->post('/add[/]', [Agentes::class, 'add']);
$app->post('/register[/]', [Agentes::class, 'register']);
$app->get('[/]', Agentes::class);
});
2024-06-18 22:41:03 -04:00
$app->group('/proveedor/{agente_id}', function($app) {
2024-04-02 23:02:52 -03:00
$app->post('/edit[/]', [Agentes::class, 'edit']);
});