Install Debugbar and enable debug mode

This commit is contained in:
Craig Rood 2022-06-05 12:19:21 +00:00
parent 093607296d
commit 53182a0e11

View File

@ -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... * Package Service Providers...
*/ */
Barryvdh\Debugbar\ServiceProvider::class,
/* /*
* Application Service Providers... * Application Service Providers...
@ -174,7 +175,7 @@ return [
// App\Providers\BroadcastServiceProvider::class, // App\Providers\BroadcastServiceProvider::class,
App\Providers\EventServiceProvider::class, App\Providers\EventServiceProvider::class,
App\Providers\RouteServiceProvider::class, App\Providers\RouteServiceProvider::class,
], ],
/* /*
@ -226,7 +227,7 @@ return [
'URL' => Illuminate\Support\Facades\URL::class, 'URL' => Illuminate\Support\Facades\URL::class,
'Validator' => Illuminate\Support\Facades\Validator::class, 'Validator' => Illuminate\Support\Facades\Validator::class,
'View' => Illuminate\Support\Facades\View::class, 'View' => Illuminate\Support\Facades\View::class,
'Debugbar' => Barryvdh\Debugbar\Facades\Debugbar::class,
], ],
]; ];