{{ config('app.name') }}
{{ config('app.name') }}
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') }}
@if($products->count() > 0)

Purchased Items

@foreach($products as $item) @endforeach
Product Qty Subtotal
{{ $item->product?->name }} @if($item->product?->description)
{{ $item->product->description }}
@endif
{{ $item->quantity }} ${{ number_format($item->subtotal, 2) }}
@endif
Total Amount: ${{ number_format($order?->total ?? 0, 2) }}