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:
Installation:
composer require barryvdh/laravel-debugbar
Add the following lines to the config/app.php
'Barryvdh\Debugbar\ServiceProvider',
'Debugbar' => 'Barryvdh\Debugbar\Facade',
Further I execute:
php artisan vendor:publish
which generates the debugbar.php file within the config folder.
Any ideas what could be missing?
Thank you
UPDATE:
I made a fresh Laravel 5 installation and installed the debugbar which works perfectly and showed my the debugbar. After executing the artisan commands:
php artisan cache:clear
and
php artisan config:cache
the debugbar is not visible anymore. I think this was also my problem of the previous question. Any ideas why this happens and how I can make the debugbar revisible?Thank you
composer dump-autoload
? – Topper