|
|
Consignment ID
|
|
{{ $order->order_number }}
Invoice date: {{ optional($order->created_at)->format('d/M/y') }}
Order date: {{ optional($order->created_at)->format('d/M/y') }}
Tracking no:
{{ $order->uid ?? 'SFR260330STF9609F6BD' }}
Shipping: {{ $shippingMethod }}
Payment method: {{ $paymentMethod }}
|
Ship to
{{ $shipping['name'] ?? $address?->name ?? $order->contact?->name ?? 'Mehedi Hasan Hridoy' }}
{{ $shipping['address_line_1'] ?? ($shipping['address'] ?? 'Jahir Smart Tower, 205/1/A Begum') }}
{{ $shipping['address_line_2'] ?? '' }}
{{ $shipping['city'] ?? 'Rokeya Sarani, Taltola, Agargaon' }}
{{ $shipping['state'] ?? 'Dhaka' }}
|
Bill to
{{ $billing['name'] ?? $address?->name ?? $order->contact?->name ?? 'Mehedi Hasan Hridoy' }}
{{ $billing['address_line_1'] ?? ($billing['address'] ?? 'Jahir Smart Tower, 205/1/A Begum') }}
{{ $billing['address_line_2'] ?? '' }}
{{ $billing['city'] ?? 'Rokeya Sarani, Taltola, Agargaon' }}
{{ $billing['state'] ?? 'Dhaka' }}
{{ $billing['email'] ?? $order->contact?->primary_email ?? 'hridoyno1@gmail.com' }}
{{ $billing['phone'] ?? $order->contact?->primary_phone ?? '+8801622733678' }}
|
| S.NO | Image | SKU | Product | Quantity | Price | Total price |
|---|---|---|---|---|---|---|
| {{ $categoryName }} | ||||||
| {{ $serial++ }} |
@if($productImageUrl)
|
{{ $item->variant?->sku ?? $item->product?->sku ?? 'N/A' }} |
{{ $item->product?->name ?? 'Product Name' }}
{{ $item->variant?->name ?? '' }}
|
{{ $item->quantity }} | {{ number_format((float) $item->unit_price, 2) }} | {{ number_format((float) $item->line_total, 2) }} |
| Subtotal | {{ number_format((float) $subtotalFromItems, 2) }} |
| Shipping | {{ number_format((float) $order->shipping_amount, 2) }} |
| Discount | -{{ number_format((float) $order->discount_amount, 2) }} |
| Tax | {{ number_format((float) $order->tax_amount, 2) }} |
| Total | {{ number_format((float) $order->total_amount, 2) }} |