12 lines
443 B
PHP
Raw Normal View History

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