我正在使用Lumen 5.7和Laravel Debugbar 3.2
我已按照手册中的说明对这些文件进行了必要的更改:
bootstrap / app.php:
$app->configure('debugbar');
if (env('APP_DEBUG')) {
$app->register(Barryvdh\Debugbar\LumenServiceProvider::class);
}
但是调试栏没有出现,我想念什么? 如何显示调试栏并使用它?
答案 0 :(得分:0)
在我的情况下是未启用mod_rewrite模块的apache服务器。 您可以检查html页面底部是否有这种html代码:_debugbar / assets / stylesheets。
这意味着debugbar实际上正在工作,但无法加载其css和js文件。
要启用apache mod_rewrite模块,请尝试以下操作: https://www.digitalocean.com/community/tutorials/how-to-set-up-mod_rewrite