0

i have download a laravel project from github, When i run the project i got an debugger menu.

I am very new to laravel.

How do i get this debugger menu in my other projects enter image description here

2

2 Answers 2

1

Add laravel-debugbar in composer.json, like "barryvdh/laravel-debugbar": "^2.0@dev",

Add Barryvdh\Debugbar\ServiceProvider::class,, 'Debugbar' => Barryvdh\Debugbar\Facade::class, to providers and aliases in your config\app.php.

Please don't forget run: composer update

Sign up to request clarification or add additional context in comments.

Comments

0

What you have shown is the debug bar from the barryvdh/laravel-debugbar package. This is the package you want to use if you have other Laravel projects.

If you have other non-Laravel projects, you want the maximebf/php-debugbar package. The barryvdh/laravel-debugbar is a nice Laravel wrapper around the base maximebf/php-debugbar package.

You can view the linked packages for installation instructions.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.