ultimatepos/resources/views/report/partials/profit_by_day.blade.php

24 lines
961 B
PHP

<div class="table-responsive">
<table class="table table-bordered table-striped table-text-center" id="profit_by_day_table">
<thead>
<tr>
<th>@lang('lang_v1.days')</th>
<th>@lang('lang_v1.gross_profit')</th>
</tr>
</thead>
<tbody>
@foreach($days as $day)
<tr>
<td>@lang('lang_v1.' . $day)</td>
<td><span class="gross-profit" data-orig-value="{{$profits[$day] ?? 0}}">@if(isset($profits[$day]))@format_currency($profits[$day]) @else 0 @endif</span></td>
</tr>
@endforeach
</tbody>
<tfoot>
<tr class="bg-gray font-17 footer-total">
<td><strong>@lang('sale.total'):</strong></td>
<td><span class="display_currency footer_total" data-currency_symbol ="true"></span></td>
</tr>
</tfoot>
</table>
</div>