10 lines
238 B
PHP
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']);
|
|
});
|