diff --git a/bootstrap/autoload.php b/bootstrap/autoload.php index 38301379..c54c842d 100644 --- a/bootstrap/autoload.php +++ b/bootstrap/autoload.php @@ -2,6 +2,8 @@ define('LARAVEL_START', microtime(true)); +ini_set('display_errors', 'on'); + /* |-------------------------------------------------------------------------- | Register The Composer Auto Loader diff --git a/setup/includes/bootstrap.php b/setup/includes/bootstrap.php index c7a3960d..e3f53478 100644 --- a/setup/includes/bootstrap.php +++ b/setup/includes/bootstrap.php @@ -6,6 +6,9 @@ // Define Base Directory define('BASE_DIR', dirname(dirname(__DIR__))); +// Set Display Errors +ini_set('display_errors', 'on'); + // Register Composer Auto Loader require BASE_DIR.'/vendor/autoload.php';