@php $branch = getBranchName($item->company_branch_id); @endphp Invoice_{{ $item->invoice_no }}
Invoice To

{{ $item->customer }}

@if ($item->mobile)

Mobile: {{ $item->mobile }}

@endif @if ($item->address)

Address: {{ $item->address }}

@endif @if ($item->vat_Number)

VAT No: {{ Customeraddressdata($item->vat_Number) }}

@endif
Invoice: #{{ $item->invoice_no }}
Date: {{ $item->sale_format_date }}
@if ($item->delivery_status)
Delivery Status: {{ Str::ucfirst($item->delivery_status) }}
@endif @if ($item->delivery_date)
Delivery Date: {{ $item->delivery_date ? dateformat($item->delivery_date) : '' }}
@endif
@foreach ($saledetails as $key => $details) @endforeach
SL Description QTY Price Total
{{ $key + 1 }} {{ $details->product_name }} {{ DecimalFormat($details->qty) }} {{ $details->unit_name }} {{ DecimalFormat($details->unit_price) }} {{ DecimalFormat($details->amount) }}

Sub Total

{{ DecimalFormat($item->amount) }}

@if ($item->total_discount > 0)

Discount

{{ DecimalFormat($item->total_discount) }}/-

@endif @if ($item->shiping_charge > 0)

Delivery Charge

{{ DecimalFormat($item->shiping_charge) }}

@endif @if ($item->gross_discount_amount > 0)

Gross Discount

{{ DecimalFormat($item->gross_discount_amount) }}

@endif

Total

{{ $item->nettotal }}