We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 086f07f commit b49a146Copy full SHA for b49a146
config/debugbar.php
@@ -15,6 +15,7 @@
15
*/
16
17
'enabled' => env('DEBUGBAR_ENABLED', null),
18
+ 'hide_empty_tabs' => false, // Hide tabs until they have content
19
'except' => [
20
'telescope*',
21
'horizon*',
src/LaravelDebugbar.php
@@ -543,6 +543,7 @@ public function __toString(): string
543
}
544
545
$renderer = $this->getJavascriptRenderer();
546
+ $renderer->setHideEmptyTabs($config->get('debugbar.hide_empty_tabs'));
547
$renderer->setIncludeVendors($config->get('debugbar.include_vendors', true));
548
$renderer->setBindAjaxHandlerToFetch($config->get('debugbar.capture_ajax', true));
549
$renderer->setBindAjaxHandlerToXHR($config->get('debugbar.capture_ajax', true));
0 commit comments