|
@@ -2,23 +2,23 @@
|
|
|
<h2>{!! __('Debug table') !!}</h2>
|
|
|
<p id="id-fdebugtime">[ {!! __(['Querytime', num($p->time, 3), $p->numQueries]) !!} - {!! __(['Memory usage', size($p->memory)]) !!} {!! __(['Peak usage', size($p->peak)]) !!} ]</p>
|
|
|
@if ($p->queries)
|
|
|
- <table>
|
|
|
- <thead>
|
|
|
+ <table id="fork-dgtable">
|
|
|
+ <thead id="fork-dgthead">
|
|
|
<tr>
|
|
|
- <th class="tcl" scope="col">{!! __('Query times') !!}</th>
|
|
|
- <th class="tcr" scope="col">{!! __('Query') !!}</th>
|
|
|
+ <th class="f-tcl" scope="col">{!! __('Query times') !!}</th>
|
|
|
+ <th class="f-tcr" scope="col">{!! __('Query') !!}</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@foreach ($p->queries as $cur)
|
|
|
<tr>
|
|
|
- <td class="tcl">{{ num($cur[1], 3) }}</td>
|
|
|
- <td class="tcr">{{ $cur[0] }}</td>
|
|
|
+ <td class="f-tcl">{{ num($cur[1], 3) }}</td>
|
|
|
+ <td class="f-tcr">{{ $cur[0] }}</td>
|
|
|
</tr>
|
|
|
@endforeach
|
|
|
<tr>
|
|
|
- <td class="tcl">{{ num($p->total, 3) }}</td>
|
|
|
- <td class="tcr"></td>
|
|
|
+ <td class="f-tcl">{{ num($p->total, 3) }}</td>
|
|
|
+ <td class="f-tcr"></td>
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</table>
|