v2 first commit
This commit is contained in:
11
resources/views/reports/tax_summary/table/footer.blade.php
Normal file
11
resources/views/reports/tax_summary/table/footer.blade.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th>{{ trans('reports.net') }}</th>
|
||||
@php $total_total = 0; @endphp
|
||||
@foreach($class->totals[$table] as $total)
|
||||
@php $total_total += $total; @endphp
|
||||
<th class="text-right pl-0">@money($total, setting('default.currency'), true)</th>
|
||||
@endforeach
|
||||
<th class="text-right pl-0">@money($total_total, setting('default.currency'), true)</th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
@@ -0,0 +1,5 @@
|
||||
<thead class="border-top-style">
|
||||
<tr>
|
||||
<th colspan="{{ count($class->dates) + 2 }}">{{ $table }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
Reference in New Issue
Block a user