I\'m using Laravel 5 and would like to use the barryvdh/laravel-debugbar. After the installation and configuration the bar is not showing.
I did the following:
to add debugger in your code step 1
composer require barryvdh/laravel-debugbar --dev
inside config/app.php
Barryvdh\Debugbar\ServiceProvider::class
'Debugbar' => Barryvdh\Debugbar\Facade::class
at last run this command
php artisan vendor:publish --provider="Barryvdh\Debugbar\ServiceProvider"