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 67e1bbd commit bd7a687Copy full SHA for bd7a687
src/DataCollector/RequestCollector.php
@@ -186,7 +186,10 @@ public function collect()
186
$htmlData['telescope'] = '<a href="' . $url . '" target="_blank">View in Telescope</a>';
187
}
188
189
- $tooltip = Arr::only($data, ['status', 'full_url']);
+ $tooltip = [
190
+ 'status' => $data['status'],
191
+ 'url' => Str::limit($request->fullUrl(), 100),
192
+ ];
193
194
if ($this->request instanceof Request) {
195
$tooltip += [
0 commit comments