Se agregan menus
This commit is contained in:
9
resources/routes/web/servicios.php
Normal file
9
resources/routes/web/servicios.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
use ProVM\TotalSport\Common\Controller\Web\Servicios;
|
||||
|
||||
$app->group('/servicios', function($app) {
|
||||
$app->get('/deportivos', [Servicios::class, 'deportivos']);
|
||||
$app->get('/animacion', [Servicios::class, 'animacion']);
|
||||
$app->get('/arriendos', [Servicios::class, 'arriendos']);
|
||||
$app->get('/culturales', [Servicios::class, 'culturales']);
|
||||
});
|
Reference in New Issue
Block a user