Lae/resources/views/components/module-earning.blade.php

25 lines
572 B
PHP

<table class="table table-hover">
<thead>
<th> / </th>
@for ($i = 1; $i < 13; $i++)
<th>{{ $i }} </th>
@endfor
</thead>
<tbody>
@foreach ($years as $year => $months)
<tr>
<td>{{ $year }}</td>
@for ($i = 1; $i < 13; $i++)
<td @if (($months[$i]['should_balance'] ?? 0) > 0) class="text-danger" @endif>{{ round(($months[$i]['should_balance'] ?? 0), 2) ?? 0 }}
</td>
@endfor
</tr>
@endforeach
</tbody>
</table>