16 lines
703 B
PHP
Raw Normal View History

<div class="table-responsive overflow-auto mt-5">
2020-01-18 18:45:40 +03:00
<table class="table align-items-center rp-border-collapse">
<tfoot class="border-top-style">
2020-01-18 18:45:40 +03:00
<tr class="rp-border-top-1">
<th class="report-column">{{ trans('reports.net_profit') }}</th>
2019-11-16 10:21:14 +03:00
@foreach($class->net_profit as $profit)
2020-01-18 18:45:40 +03:00
<th class="report-column text-right px-0">@money($profit, setting('default.currency'), true)</th>
2019-11-16 10:21:14 +03:00
@endforeach
2020-01-18 18:45:40 +03:00
<th class="report-column text-right">
@money(array_sum($class->net_profit), setting('default.currency'), true)
</th>
2019-11-16 10:21:14 +03:00
</tr>
</tfoot>
2019-11-16 10:21:14 +03:00
</table>
</div>