12 lines
365 B
PHP
12 lines
365 B
PHP
![]() |
<?php
|
||
|
use Incoviba\Controller\API\Inmobiliarias\Agentes;
|
||
|
|
||
|
$app->group('/agentes', function($app) {
|
||
|
$app->post('/add[/]', [Agentes::class, 'add']);
|
||
|
$app->post('/register[/]', [Agentes::class, 'register']);
|
||
|
$app->get('[/]', Agentes::class);
|
||
|
});
|
||
|
$app->group('/agente/{agente_id}', function($app) {
|
||
|
$app->post('/edit[/]', [Agentes::class, 'edit']);
|
||
|
});
|