Skip to content

Commit 01a8597

Browse files
authored
Update debugbar.php
1 parent fff9d07 commit 01a8597

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

config/debugbar.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,15 @@
99
|
1010
| Debugbar is enabled by default, when debug is set to true in app.php.
1111
| You can override the value by setting enable to true or false instead of null.
12+
|
13+
| You can provide an array of URI's that must be ignored (eg. 'api/*')
1214
|
1315
*/
1416

15-
'enabled' => env('DEBUGBAR_ENABLED', env('APP_DEBUG', false)),
17+
'enabled' => env('DEBUGBAR_ENABLED', null),
18+
'except' => [
19+
//
20+
],
1621

1722
/*
1823
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)