Invoice Number
#{{ $invoice?->number }}
Order ID
#{{ $order?->id }}
Customer
{{ $customer?->name }}
Email
{{ $customer?->email }}
Order Date
{{ $order?->formatted_order_date ?? optional($order?->order_date)->format('M j, Y') }}
Delivery Date
{{ $order?->formatted_delivery_date ?? optional($order?->delivery_date)->format('M j, Y') }}
Purchased Items
| Product | Qty | Subtotal |
|---|---|---|
|
{{ $item->product?->name }}
@if($item->product?->description)
{{ $item->product->description }}
@endif
|
{{ $item->quantity }} | ${{ number_format($item->subtotal, 2) }} |
Total Amount: ${{ number_format($order?->total ?? 0, 2) }}