Files

19 lines
602 B
PHP
Raw Permalink Normal View History

2018-12-16 15:18:17 -06:00
<div>
<table id="component-status" class="table table-hover table-condensed table-striped">
<thead>
<tr>
<th data-column-id="status" data-order="desc">Status</th>
<th data-column-id="count">Count</th>
</tr>
</thead>
<tbody>
@foreach($status as $item)
<tr>
<td><p class="text-left {{ $item['color'] }}">{{ $item['text'] }}</p></td>
<td><p class="text-left {{ $item['color'] }}">{{ $item['total'] }}</p></td>
</tr>
@endforeach
</tbody>
</table>
</div>