barryvdh/laravel-debugbar是一款用于調(diào)試laravel框架的工具,用戶可以使用composer進(jìn)行安裝,代碼如下:
composer require barryvdh/laravel-debugbar
安裝完成之后,我們還需要對(duì)laravel框架進(jìn)行一些簡(jiǎn)單的配置才能正常的使用debugbar。
打開laravel框架中config/app.php文件,在Application Service Providers...中添加如下代碼:
Barryvdh\Debugbar\ServiceProvider::class,
添加成功之后的代碼如下:
/*
* Application Service Providers...
*/
App\Providers\AppServiceProvider::class,
App\Providers\AuthServiceProvider::class,
App\Providers\BroadcastServiceProvider::class,
App\Providers\EventServiceProvider::class,
App\Providers\RouteServiceProvider::class,
Barryvdh\Debugbar\ServiceProvider::class, //添加調(diào)試工具Debugbar
運(yùn)行之后的效果截圖如下:
從截圖我們可以看出,這款用于laravel框架的barryvdh/laravel-debugbar調(diào)試工具真的很棒!