2020-01-28 15:51:36 +03:00
|
|
|
<div class="table-responsive overflow-auto my-4">
|
|
|
|
<table class="table table-hover align-items-center rp-border-collapse">
|
2020-01-13 15:55:28 +03:00
|
|
|
<tfoot class="border-top-style">
|
2020-01-18 18:45:40 +03:00
|
|
|
<tr class="rp-border-top-1">
|
2020-02-01 15:26:53 +03:00
|
|
|
<th class="report-column text-uppercase text-left text-nowrap">{{ 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">
|
2020-01-13 15:55:28 +03:00
|
|
|
@money(array_sum($class->net_profit), setting('default.currency'), true)
|
|
|
|
</th>
|
2019-11-16 10:21:14 +03:00
|
|
|
</tr>
|
2020-01-13 15:55:28 +03:00
|
|
|
</tfoot>
|
2019-11-16 10:21:14 +03:00
|
|
|
</table>
|
|
|
|
</div>
|