123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- ClassLoader::addDirectories(array(
- app_path().'/commands',
- app_path().'/controllers',
- app_path().'/models',
- app_path().'/database/seeds',
- ));
- Log::useFiles(storage_path().'/logs/laravel.log');
- App::error(function(Exception $exception, $code)
- {
- Log::error($exception);
- });
- App::down(function()
- {
- return Response::make("Be right back!", 503);
- });
- require app_path().'/filters.php';
|