2019-11-28 11:18:58 +03:00

12 lines
443 B
PHP

<tfoot>
<tr>
<th style="width: 179px;">{{ trans('reports.net') }}</th>
@php $total_total = 0; @endphp
@foreach($class->totals[$table] as $total)
@php $total_total += $total; @endphp
<th class="text-right">@money($total, setting('default.currency'), true)</th>
@endforeach
<th class="text-right">@money($total_total, setting('default.currency'), true)</th>
</tr>
</tfoot>