|
92 | 92 | 'db' => true, // Show database (PDO) queries and bindings
|
93 | 93 | 'views' => true, // Views with their data
|
94 | 94 | 'route' => true, // Current route information
|
| 95 | + 'auth' => true, // Display Laravel authentication status |
| 96 | + 'gate' => true, // Display Laravel Gate checks |
| 97 | + 'session' => true, // Display session data |
| 98 | + 'symfony_request' => true, // Only one can be enabled.. |
| 99 | + 'mail' => true, // Catch mail messages |
95 | 100 | 'laravel' => false, // Laravel version and environment
|
96 | 101 | 'events' => false, // All events fired
|
97 | 102 | 'default_request' => false, // Regular or special Symfony request logger
|
98 |
| - 'symfony_request' => true, // Only one can be enabled.. |
99 |
| - 'mail' => true, // Catch mail messages |
100 | 103 | 'logs' => false, // Add the latest log messages
|
101 | 104 | 'files' => false, // Show the included files
|
102 | 105 | 'config' => false, // Display config settings
|
103 |
| - 'auth' => false, // Display Laravel authentication status |
104 |
| - 'gate' => false, // Display Laravel Gate checks |
105 |
| - 'session' => true, // Display session data |
106 | 106 | ],
|
107 | 107 |
|
108 | 108 | /*
|
|
116 | 116 |
|
117 | 117 | 'options' => [
|
118 | 118 | 'auth' => [
|
119 |
| - 'show_name' => false, // Also show the users name/email in the debugbar |
| 119 | + 'show_name' => true, // Also show the users name/email in the debugbar |
120 | 120 | ],
|
121 | 121 | 'db' => [
|
122 | 122 | 'with_params' => true, // Render SQL with the parameters substituted
|
| 123 | + 'backtrace' => true, // Use a backtrace to find the origin of the query in your files. |
123 | 124 | 'timeline' => false, // Add the queries to the timeline
|
124 |
| - 'backtrace' => false, // EXPERIMENTAL: Use a backtrace to find the origin of the query in your files. |
125 |
| - 'explain' => [ // EXPERIMENTAL: Show EXPLAIN output on queries |
| 125 | + 'explain' => [ // Show EXPLAIN output on queries |
126 | 126 | 'enabled' => false,
|
127 | 127 | 'types' => ['SELECT'], // ['SELECT', 'INSERT', 'UPDATE', 'DELETE']; for MySQL 5.6.3+
|
128 | 128 | ],
|
|
0 commit comments