Se agregan menus

This commit is contained in:
2020-12-12 00:25:59 -03:00
parent decd1469b4
commit 8bc3037e13
43 changed files with 1802 additions and 77 deletions

View File

@ -1,6 +1,12 @@
<?php
use ProVM\TotalSport\Common\Controller\Web\Eventos;
$app->group('/evento/{evento}', function($app) {
$app->get('[/]', Eventos::class);
$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']);