10 lines
466 B
PHP
Raw Normal View History

2019-11-16 10:21:14 +03:00
@php $row_total = 0; @endphp
2020-03-09 17:17:42 +03:00
<tr class="row rp-border-top-1 font-size-unset">
<td class="{{ $class->head_column_width }}">{{ $class->row_names[$table][$id] }}</td>
2020-01-27 22:41:08 +03:00
@foreach($rows as $row)
@php $row_total += $row; @endphp
2020-03-09 17:17:42 +03:00
<td class="{{ $class->column_width }}">@money($row, setting('default.currency'), true)</td>
2019-11-16 10:21:14 +03:00
@endforeach
2020-03-09 17:17:42 +03:00
<td class="{{ $class->head_column_width }}">@money($row_total, setting('default.currency'), true)</td>
2019-11-16 10:21:14 +03:00
</tr>