laravel composer 安装扩展

1.composer  require barryvdh/laravel-debugbar

                              debug调试工具安装

2.安装后会出现在 composer.json文件中

3.在config/app.php 文件中配置对应信息

注册dubug扩展

开启扩展

  'debug' => env('APP_DEBUG', true),
   //开发环境使用,上线需关闭

配置成功后 刷新页面

debug扩展:https://github.com/barryvdh/laravel-debugbar

猜你喜欢

转载自blog.csdn.net/qq_37523331/article/details/84984067