Voucher Card
| Retailer |
Product |
Jumlah |
Harga |
Total |
Metode Bayar |
@foreach($sales_vc as $val)
| {{ ucwords(strtolower($val['retailer'])) }} {{ $val['qr_code'] }} |
{{ $val['product'] }} |
{{ $val['quantity'] }} |
{{ number_format($val['price'],0,",",".") }} |
{{ number_format(($val['price'] * $val['quantity']),0,",",".") }} |
{{ $arr_pay_method[$val['pay_method']] }} |
@endforeach
TOTAL: |
{{ number_format($total_vc,0,",",".") }} |
|
@if(count($sales_ev_detail) > 0)
@foreach($sales_ev_detail as $key => $detail)
eVoucher {{ $key }}
| Toko |
QR Code |
Nominal |
End User Price |
Metode Bayar |
@foreach($detail as $val)
| {{ $val['retailer'] }} |
{{ $val['qr_code'] }} |
{{ number_format($val['nominal'],0,",",".") }} |
{{ number_format($val['eup'],0,",",".") }} |
{{ $arr_pay_method[$val['pay_method']] }} |
@endforeach
Total: |
{{ number_format($total_ev,0,",",".") }} |
|
@endforeach
@endif
Total Sales: {{ number_format(($total_vc+$total_ev),0,",",".") }}