Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
626 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>
2018-12-16 15:18:17 -06:00
</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>