13 lines
449 B
PHP
13 lines
449 B
PHP
<?php
|
|
use ProVM\TotalSport\Common\Controller\Web\Eventos;
|
|
|
|
$app->group('/eventos', function($app) {
|
|
$app->get('/bienestar', [Eventos::class, 'bienestar']);
|
|
$app->get('/carreras', [Eventos::class, 'carreras']);
|
|
$app->get('/deportivos', [Eventos::class, 'deportivos']);
|
|
$app->get('/ligas', [Eventos::class, 'ligas']);
|
|
$app->get('/team', [Eventos::class, 'team']);
|
|
});
|
|
|
|
//$app->get('/servicios/deportivos', [Servicios::class, 'deportivos']);
|