This packet will add a bar on the bottom of our website that will be useful during debugging. Note that this bar will only be visible if debug is turned on.
run
composer require barryvdh/laravel-debugbar
add
Barryvdh\Debugbar\ServiceProvider::class
in config/app.php providers section
add
'Debugbar' => Barryvdh\Debugbar\Facade::class
in config/app.php aliases section
run
php artisan vendor:publish --provider="Barryvdh\Debugbar\ServiceProvider"