I'm using Lumen 5.7 and Laravel Debugbar 3.2
I made the necessary changes to these files, as specified in the manual:
bootstrap/app.php:
$app->configure('debugbar');
if (env('APP_DEBUG')) {
$app->register(Barryvdh\Debugbar\LumenServiceProvider::class);
}
But the debugbar doesn't appear, what do I miss? How do I display the debugbars and use it?