{{ config('app.url') }}
{{ $generaleSetting?->email }}
{{ $generaleSetting?->mobile }}
Business address
{{ $generaleSetting?->address }}
{{ $order->customer?->user?->name }}
{{ ($order?->address?->address_line ?? 'N/A') . ', ' . ($order->address?->address_line2 ?? 'N/A') . ', ' . ($order->address?->area ?? 'N/A') }}
{{ $order->customer?->user?->email }}
Invoice of ({{ $generaleSetting?->currency }})
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') }} |
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) }}