{{ config('app.url') }}
{{ $generalSetting?->email }}
{{ $generalSetting?->mobile }}
Business address
{{ $generalSetting?->address }}
Invoice of ({{ $generalSetting?->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) }}
Total
{{ showCurrency($order->payable_amount) }}