v2 first commit
This commit is contained in:
13
resources/views/reports/profit_loss/content/footer.blade.php
Normal file
13
resources/views/reports/profit_loss/content/footer.blade.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<div class="table-responsive mt-4 overflow-auto">
|
||||
<table class="table align-items-center">
|
||||
<thead class="border-top-style">
|
||||
<tr>
|
||||
<th style="width: 179px;">{{ trans('reports.net_profit') }}</th>
|
||||
@foreach($class->net_profit as $profit)
|
||||
<th class="text-right">@money($profit, setting('default.currency'), true)</th>
|
||||
@endforeach
|
||||
<th class="text-right">@money(array_sum($class->net_profit), setting('default.currency'), true)</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
</div>
|
||||
13
resources/views/reports/profit_loss/content/header.blade.php
Normal file
13
resources/views/reports/profit_loss/content/header.blade.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<div class="table-responsive mt-4 overflow-auto">
|
||||
<table class="table align-items-center">
|
||||
<thead class="border-top-style">
|
||||
<tr>
|
||||
<th style="width: 152px;"></th>
|
||||
@foreach($class->dates as $date)
|
||||
<th class="text-right">{{ $date }}</th>
|
||||
@endforeach
|
||||
<th class="text-right">{{ trans_choice('general.totals', 1) }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
</div>
|
||||
Reference in New Issue
Block a user