2018-12-16 15:18:17 -06:00
|
|
|
<div>
|
|
|
|
|
<table id="component-status" class="table table-hover table-condensed table-striped">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
2022-08-05 10:12:44 +02:00
|
|
|
<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>
|