gwapo
gwapo

Reputation: 208

Remove laravel icon below

How to remove laravel below Please see image attached for reference enter image description here

enter image description here

Upvotes: 1

Views: 1136

Answers (2)

Illia Yaremchuk
Illia Yaremchuk

Reputation: 2025

Also, it can be disabled in the file .env. If you have this file.

APP_DEBUG=false

Upvotes: 1

user320487
user320487

Reputation:

That icon is part of the barryvdh/laravel-debugbar package. You either need to disable the package or uninstall it.

To disable it during runtime, use:

\Debugbar::disable();

and conversely, to enable use:

\Debugbar::enable();

Also, as noted in the documentation:

The Debugbar will be enabled when APP_DEBUG is true.

Upvotes: 3

Related Questions