Skip to content

Commit 10bbbad

Browse files
authored
Query duration from Eloquent is in milliseconds (#129)
2 parents 9ad74d6 + 0adb1ed commit 10bbbad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/data_collector/eloquent.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
{% for query in collector.queries %}
6868
<tr>
6969
<td class="font-normal text-muted">{{ loop.index }}</td>
70-
<td>{{ '%0.2f'|format(query.time * 1000) }} ms</td>
70+
<td>{{ '%0.2f'|format(query.time) }} ms</td>
7171
<td>
7272
<span class="highlight">{{ query.sql|wouterj_format_sql }}</span><br>
7373

0 commit comments

Comments
 (0)