| Invoice No |
{{ $item->invoice_no }} |
| Order No |
{{ $item->order_no }} |
| Reference No |
{{ $item->reference_no }} |
| Return Date |
{{ $item->purchase_format_date }} |
| Location |
{{ $item->branch_name }} |
| Customer |
{{ $item->supplier }} |
| Sub Amount |
{{ numberformat($item->amount) }} |
| Discount |
{{ numberformat($item->total_discount) }} |
| Tax/Vat |
{{ numberformat($item->total_vat) }}
|
| Shiping Charge |
{{ numberformat($item->shiping_charge) }} |
| Gross Discount |
{{ Str::ucfirst($item->gross_discount_type) }} |
@if ($item->gross_discount_type == 'normal')
{{ numberformat($item->gross_discount_value) }}
@else
{{ $item->gross_discount_value }}%
@endif
|
{{ numberformat($item->gross_discount_amount) }} |
| Net Total |
{{ numberformat($item->nettotal) }}
|
| Paid Amount |
{{ numberformat($item->payments->sum('amount')) }}
|
| Due Amount |
{{ numberformat($item->nettotal - $item->payments->sum('amount')) }}
|