2025-03-06 20:34:43 -03:00
|
|
|
<?php
|
|
|
|
use Incoviba\Controller\Proyectos\Brokers;
|
|
|
|
|
|
|
|
$app->group('/brokers', function($app) {
|
2025-03-07 17:11:59 -03:00
|
|
|
$app->get('[/]', Brokers::class);
|
2025-03-06 20:34:43 -03:00
|
|
|
});
|
2025-03-11 17:41:11 -03:00
|
|
|
$app->group('/broker/{broker_rut}', function($app) {
|
2025-03-13 12:18:08 -03:00
|
|
|
$app->group('/contract/{contract_id}', function($app) {
|
|
|
|
$app->get('[/]', [Brokers\Contracts::class, 'show']);
|
|
|
|
});
|
2025-03-11 17:41:11 -03:00
|
|
|
$app->get('[/]', [Brokers::class, 'show']);
|
|
|
|
});
|