Nasik Ahd
Nasik Ahd

Reputation: 798

How do i get this php debugger in laravel

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

Upvotes: 0

Views: 238

Answers (2)

patricus
patricus

Reputation: 62228

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.

Upvotes: 0

rome 웃
rome 웃

Reputation: 1901

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

Upvotes: 1

Related Questions