Seteo inicial

This commit is contained in:
2020-07-02 18:44:16 -04:00
parent 8305f7a81c
commit 034e63d8b9
18 changed files with 254 additions and 0 deletions

View File

@ -0,0 +1,2 @@
<?php
include_once . '.php';

14
resources/routes/web.php Normal file
View File

@ -0,0 +1,14 @@
<?php
$folder = implode(DIRECTORY_SEPARATOR, [
__DIR__,
'web'
]);
if (file_exists($folder)) {
$files = new DirectoryIterator($folder);
foreach ($files as $file) {
if ($file->isDir()) {
continue;
}
include_once $file->getRealPath();
}
}