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.
2 parents f8f129a + a9a1e8b commit d478f01Copy full SHA for d478f01
config/view.php
@@ -23,7 +23,8 @@
23
'is_ajax_request',
24
'csrf_field',
25
'config',
26
- 'is_htmx_request'
+ 'is_htmx_request',
27
+ 'render_fragment_or_full'
28
],
29
30
'paths' => [
core/Support/Debugbar.php
@@ -36,7 +36,7 @@ public static function resetForRequest()
36
37
public static function render()
38
{
39
- if (env('APP_DEBUG') !== 'true') return;
+ if (!env('APP_DEBUG')) return;
40
41
$endTime = microtime(true);
42
$startTime = defined('REQUEST_START') ? REQUEST_START : SPROUT_START;
0 commit comments