bpocallaghan / laravel-admin-starter

A Laravel Admin Starter project with Page Builder, Roles, Impersonation, Analytics, Blog, News, Banners, FAQ, Testimonials and more
http://bpocallaghan.co.za
341 stars 92 forks source link

Laravel Debugbar is not appearing in the project #32

Closed trianity closed 6 years ago

trianity commented 6 years ago

HI @bpocallaghan

The Laravel Debugbar is included to the project:
https://github.com/barryvdh/laravel-debugbar

The settings in the .env file are:

but the Debugbar is not appeared in the front and even it is not appeared in the backend.

Do you have any suggestion?

bpocallaghan commented 6 years ago

Hi @AkkuFresh

Have a look at composer.json Line 67

"extra": {
        "laravel": {
            "dont-discover": [
                "barryvdh/laravel-debugbar"
            ]
        }
    },

Remove line 67 "barryvdh/laravel-debugbar"

Then open command line

Run composer dump-autoload You can 'exclude' packages to be auto loaded there.

Please let me know if its not working.

trianity commented 6 years ago

HI @bpocallaghan Thank you very much. The laravel-debugbar was in the "dont-discover" section. Removing it the DebugBar is appeared. Thanks.