Files
totalsport/resources/routes/web/eventos.php

7 lines
148 B
PHP
Raw Normal View History

2020-04-28 23:52:56 -04:00
<?php
use ProVM\TotalSport\Common\Controller\Web\Eventos;
$app->group('/evento/{evento}', function($app) {
$app->get('[/]', Eventos::class);
});