diff --git a/config/app.php b/config/app.php index 8409e00..8163f4f 100644 --- a/config/app.php +++ b/config/app.php @@ -39,7 +39,7 @@ return [ | */ - 'debug' => (bool) env('APP_DEBUG', false), + 'debug' => (bool) env('APP_DEBUG', true), /* |-------------------------------------------------------------------------- @@ -165,6 +165,7 @@ return [ /* * Package Service Providers... */ + Barryvdh\Debugbar\ServiceProvider::class, /* * Application Service Providers... @@ -174,7 +175,7 @@ return [ // App\Providers\BroadcastServiceProvider::class, App\Providers\EventServiceProvider::class, App\Providers\RouteServiceProvider::class, - + ], /* @@ -226,7 +227,7 @@ return [ 'URL' => Illuminate\Support\Facades\URL::class, 'Validator' => Illuminate\Support\Facades\Validator::class, 'View' => Illuminate\Support\Facades\View::class, - + 'Debugbar' => Barryvdh\Debugbar\Facades\Debugbar::class, ], ];