{{ config('app.name') }}

{{ config('app.url') }}

{{ $generaleSetting?->email }}

{{ $generaleSetting?->mobile }}

Business address

{{ $generaleSetting?->address }}

Bill To:

{{ $order->customer?->user?->name }}

Address:

{{ ($order?->address?->address_line ?? 'N/A') . ', ' . ($order->address?->address_line2 ?? 'N/A') . ', ' . ($order->address?->area ?? 'N/A') }}

Email:

{{ $order->customer?->user?->email }}

Invoice of ({{ $generaleSetting?->currency }})

{{ showCurrency($order->payable_amount) }}

Payment Method Invoice Number Invoice Date Order Date
{{ $order->payment_method->value }} #{{ $order->prefix . $order->order_code }} {{ now()->format('d F, Y') }} {{ $order->created_at->format('d F, Y') }}
@foreach ($order->products as $product) @php $price = $product->pivot->price > 0 ? $product->pivot->price : ($product->discount_price > 0 ? $product->discount_price : $product->price); @endphp @endforeach
Item Item Name Rate Quantity Size Color Price
{{ $loop->iteration }}. {{ $product->name }}

{{ Str::limit($product->short_description, 60, '...') }}

{{ showCurrency($price) }} {{ $product->pivot->quantity }} {{ $product->pivot->size ?? 'N/A' }} {{ $product->pivot->color ?? 'N/A' }} {{ showCurrency($price * $product->pivot->quantity) }}

Subtotal

{{ showCurrency($order->total_amount) }}

Discount

{{ showCurrency($order->coupon_discount) }}

Delivery Charge

{{ showCurrency($order->delivery_charge) }}

VAT & Tax

{{ showCurrency($order->tax_amount) }}

Total

{{ showCurrency($order->payable_amount) }}