10 lines
571 B
PHP
Raw Normal View History

2020-06-06 11:48:20 +03:00
@if ($row_total = array_sum($rows))
<tr class="row rp-border-top-1 font-size-unset">
2020-10-22 18:58:58 +03:00
<td class="{{ $class->column_name_width }} long-texts pr-0" title="{{ $class->row_names[$table][$id] }}">{{ $class->row_names[$table][$id] }}</td>
2020-06-06 11:48:20 +03:00
@foreach($rows as $row)
<td class="{{ $class->column_value_width }} text-right px-0">@money($row, setting('default.currency'), true)</td>
@endforeach
<td class="{{ $class->column_name_width }} text-right pl-0 pr-4">@money($row_total, setting('default.currency'), true)</td>
</tr>
@endif