report alignment and big test values fixed

This commit is contained in:
batuhanbas
2020-01-13 15:55:28 +03:00
parent 22ee37622e
commit e1bdcd0964
12 changed files with 57 additions and 46 deletions

View File

@ -1,9 +1,9 @@
@php $row_total = 0; @endphp
<tr>
<td>{{ $class->getTableRowList()[$id] }}</td>
<td class="long-texts report-column">{{ $class->getTableRowList()[$id] }}</td>
@foreach($items as $item)
@php $row_total += $item; @endphp
<td class="text-right pl-0">@money($item, setting('default.currency'), true)</td>
<td class="long-texts report-column">@money($item, setting('default.currency'), true)</td>
@endforeach
<th class="text-right pl-0">@money($row_total, setting('default.currency'), true)</th>
<td class="long-texts report-column">@money($row_total, setting('default.currency'), true)</td>
</tr>