2020-01-13 15:55:28 +03:00
|
|
|
<div class="table-responsive overflow-auto mt-5">
|
2019-11-16 10:21:14 +03:00
|
|
|
<table class="table align-items-center">
|
2020-01-13 15:55:28 +03:00
|
|
|
<tfoot class="border-top-style">
|
2019-11-16 10:21:14 +03:00
|
|
|
<tr>
|
2020-01-13 15:55:28 +03:00
|
|
|
<th class="long-texts report-column">{{ trans('reports.net_profit') }}</th>
|
2019-11-16 10:21:14 +03:00
|
|
|
@foreach($class->net_profit as $profit)
|
2020-01-13 16:26:41 +03:00
|
|
|
<th class="long-texts report-column text-right">@money($profit, setting('default.currency'), true)</th>
|
2019-11-16 10:21:14 +03:00
|
|
|
@endforeach
|
2020-01-13 16:26:41 +03:00
|
|
|
<th class="long-texts 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>
|