"; // Determine if the application is in maintenance mode... if (file_exists($maintenance = '../private/laravel/storage/framework/maintenance.php')) { require $maintenance; }else{ //echo "Maintenance mode file not found. Please ensure the application is properly set up."; //exit(1); } // Register the Composer autoloader... require '../private/laravel/vendor/autoload.php'; // Bootstrap Laravel and handle the request... /** @var Application $app */ $app = require_once '../private/laravel/bootstrap/app.php'; $app->handleRequest(Request::capture());