Skip to content

Commit

Permalink
Query duration from Eloquent is in milliseconds (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
wouterj committed Apr 11, 2022
2 parents 9ad74d6 + 0adb1ed commit 10bbbad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/data_collector/eloquent.html.twig
Expand Up @@ -67,7 +67,7 @@
{% for query in collector.queries %}
<tr>
<td class="font-normal text-muted">{{ loop.index }}</td>
<td>{{ '%0.2f'|format(query.time * 1000) }} ms</td>
<td>{{ '%0.2f'|format(query.time) }} ms</td>
<td>
<span class="highlight">{{ query.sql|wouterj_format_sql }}</span><br>

Expand Down

0 comments on commit 10bbbad

Please sign in to comment.