Files
oficial/app/resources/routes/proyectos/brokers.php
2025-03-11 17:41:11 -03:00

10 lines
238 B
PHP

<?php
use Incoviba\Controller\Proyectos\Brokers;
$app->group('/brokers', function($app) {
$app->get('[/]', Brokers::class);
});
$app->group('/broker/{broker_rut}', function($app) {
$app->get('[/]', [Brokers::class, 'show']);
});