| {{ ++$key }} |
{{$globalSettings->invoice_prefix."-BI-".str_pad($data->sales_master_id, 8, '0', STR_PAD_LEFT)}} |
{{ $data->customer_name }} {{ $data->mobile_no }} |
{{ number_format($data->memo_total,2) }} |
{{ number_format($data->discount,2) }} |
{{ number_format($data->advanced_amount,2) }} |
{{ number_format($data->memo_total-$data->discount-$data->advanced_amount,2) }} |
@php
$net_sales += $data->memo_total;
$net_discount += $data->discount;
$net_paid += $data->advanced_amount;
$net_due += ($data->memo_total-$data->discount-$data->advanced_amount);
@endphp
@endforeach