Bosquejo
This commit is contained in:
8
resources/routes/router.php
Normal file
8
resources/routes/router.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
$filename = implode(DIRECTORY_SEPARATOR, [
|
||||
__DIR__,
|
||||
$__environment . '.php'
|
||||
]);
|
||||
if (file_exists($filename)) {
|
||||
include_once $filename;
|
||||
}
|
4
resources/routes/web.php
Normal file
4
resources/routes/web.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
use ProVM\TotalSport\Common\Controller\Web\Home;
|
||||
|
||||
$app->get('/', Home::class);
|
Reference in New Issue
Block a user