diffrent reports status tables updated

This commit is contained in:
batuhanbas
2019-11-28 11:18:58 +03:00
parent 9439e7061c
commit 99c56e261a
11 changed files with 23 additions and 23 deletions

View File

@@ -1,4 +1,4 @@
<div class="table-responsive mt-4 overflow-auto">
<div class="table-responsive overflow-auto">
<table class="table align-items-center">
<thead class="border-top-style">
<tr>

View File

@@ -1,11 +1,11 @@
<tfoot>
<tr>
<th style="width: 179px;">{{ trans_choice('general.totals', 1) }}</th>
@php $total_total = 0; @endphp
@foreach($class->totals[$table] as $date => $total)
@php $total_total += $total; @endphp
<th class="text-right">@money($total, setting('default.currency'), true)</th>
@endforeach
@php $total_total = 0; @endphp
@foreach($class->totals[$table] as $date => $total)
@php $total_total += $total; @endphp
<th class="text-right">@money($total, setting('default.currency'), true)</th>
@endforeach
<th class="text-right">@money($total_total, setting('default.currency'), true)</th>
</tr>
</tfoot>