Laravel Debugbar continues injecting own code on a page even is completely disabled
Hello! I tried:
.env: DEBUGBAR_ENABLED=false / APP_DEBUG=false
web.php: Config::set('debugbar.enabled', false); (at the top)
config\debugbar.php: 'inject' => false
php artisan config:cache / composer dump-autoload
But in generated source code of page I could see JS template made by debugbar. Full deleting debugbar is not appropriate for me.
Thanks for any advice.
Thanks for answer. It seems that debugbar is autoloading (as I remember this feature works for L5.5 and newer) because I don't see debugbar class in 'providers' array.