@@ -31,7 +31,7 @@ Bootstraps the following collectors for Laravel:
31
31
And the default collectors:
32
32
33
33
- PhpInfoCollector
34
- - MessagesCollector
34
+ - [ MessagesCollector] ( #messages-collector )
35
35
- [ TimeDataCollector] ( #timeline-collector ) (With Booting and Application timing)
36
36
- MemoryCollector
37
37
- ExceptionsCollector
@@ -163,12 +163,18 @@ If you want to avoid any limits, you can set the option to `null`
163
163
164
164
### RouteCollector
165
165
166
+ <!-- md:version v1.0 -->
167
+ <!-- md:feature collectors.route -->
168
+
166
169
This shows the current route and middleware.
167
170
168
171
![ RouteCollector] ( img/route.png )
169
172
170
173
### Timeline Collector
171
174
175
+ <!-- md:version v1.0 -->
176
+ <!-- md:feature collectors.time -->
177
+
172
178
![ Timeline Collector] ( img/timeline.png )
173
179
174
180
``` php
@@ -181,6 +187,9 @@ This shows the current route and middleware.
181
187
182
188
### ViewCollector
183
189
190
+ <!-- md:version v1.0 -->
191
+ <!-- md:feature collectors.views -->
192
+
184
193
The ViewCollector shows views and has the following features:
185
194
186
195
- Show used templates and source
@@ -204,6 +213,25 @@ The ViewCollector shows views and has the following features:
204
213
]
205
214
206
215
```
216
+
217
+ ## Messages Collector
218
+
219
+ <!-- md:version v1.0 -->
220
+ <!-- md:feature collectors.messages -->
221
+
222
+ The Message collectors gathers all messages from ` debug() ` calls and anything written to the logs.
223
+
224
+ You can pass multiple parameters to ` debug() ` , even complex object.
225
+
226
+ ### Trace
227
+
228
+ When calling ` debug() ` , the source of the call is shown and can be opened with your IDE.
229
+
230
+ <!-- md:version v3.10.0 -->
231
+ <!-- md:feature options.messages.trace -->
232
+
233
+
234
+ ![ Messages Collector] ( img/messages.png )
207
235
## Additional options
208
236
209
237
``` php
0 commit comments