I have a project with Laravel version 7.28. I run
composer require barryvdh/laravel-debugbar --dev,
After that I added Barryvdh\Debugbar\ServiceProvider::class
to app/config.php
under providers and added
'Debugbar' => Barryvdh\Debugbar\Facade::class
to app/config.php
under aliases. Then I run
php artisan vendor:publish --provider="Barryvdh\Debugbar\ServiceProvider"
Even though APP_DEBUG
in .env
is true
and I terminated and rerun the app debugbar is not showing. Where did I make my mistake?