From 53182a0e11ea1c9a7a99683973666fc7869bc474 Mon Sep 17 00:00:00 2001 From: Craig Rood Date: Sun, 5 Jun 2022 12:19:21 +0000 Subject: [PATCH] Install Debugbar and enable debug mode --- config/app.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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, ], ];