1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- define('LARAVEL_START', microtime(true));
- require __DIR__.'/../vendor/autoload.php';
- $compiledPath = __DIR__.'/../storage/framework/compiled.php';
- if (file_exists($compiledPath))
- {
- require $compiledPath;
- }
|