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...
*/
Barryvdh\Debugbar\ServiceProvider::class,
/*
* Application Service Providers...
@ -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,
],
];