Back
Invoice

{{ $order->order_number }}

8stores {{ $order->created_at->format('M d, Y') }}

Bill To

{{ $order->customer->name }}

{{ $order->customer->email }}

Deliver To

{{ $order->delivery_recipient_name }}

{{ $order->delivery_phone }}

{{ collect([$order->delivery_address_line, $order->delivery_area, $order->delivery_city])->filter()->implode(', ') }}

Order

Status: {{ $order->statusLabel() }}

Payment: {{ strtoupper($order->payment_method) }}

@foreach ($order->items as $item) @endforeach
Product Price Qty Total
{{ $item->product_name }} @if ($item->variant_label) {{ $item->variant_label }} @endif {{ \App\Models\SiteSetting::formatPrice($item->unit_price) }} {{ $item->quantity }} {{ \App\Models\SiteSetting::formatPrice($item->line_total) }}
Subtotal{{ \App\Models\SiteSetting::formatPrice($order->subtotal) }}
@if ((float) $order->discount_amount > 0)
Coupon {{ $order->coupon_code }}-{{ \App\Models\SiteSetting::formatPrice($order->discount_amount) }}
@endif
Shipping{{ \App\Models\SiteSetting::formatPrice($order->shipping_amount) }}
Total{{ \App\Models\SiteSetting::formatPrice($order->total) }}