Debugbar GitHub Address: https://github.com/barryvdh/laravel-debugbar/tree/1.8 Laravel for version 1.8
Require This package with composer:
Composer require barryvdh/laravel-debugbar:~1.8
after updating composer, add the serviceprovider to the providers array in app/config/app.php
note for Laravel 5:if-a catch-all/fallback route, make sure you load the Debugbar serviceprovider before your ow n App serviceproviders.
' Barryvdh\debugbar\serviceprovider ',
If you want to use the facade to log messages, add this to your facades in app.php:
' Debugbar ' = ' barryvdh\debugbar\facade ',
The profiler is enabled by default and if you have app.debug=true. You can override this in the config files. You can also set in your config if you want to include/exclude the vendor files also (Fontawesome, Highlight.js and JQuery ). If you already with them in your site, set it to false. You can also only display the JS for CSS vendors, by setting it to ' JS ' or ' CSS '. (highlight.js requires both CSS + JS, so set totrue
For syntax highlighting)
PHP Artisan config:publish Barryvdh/laravel-debugbar
Laravel Debugging Tools