{{ $website->name }}

Create an Account

Register with us to track all your orders easily and checkout faster next time!

Order #{{ $order->order_number }}

Placed on {{ $order->created_at->format('F d, Y \a\t g:i A') }}

Order Status: {{ ucfirst($order->status) }}
Payment Status: {{ ucfirst($order->payment_status) }}

Order Items

@foreach($order->orderItems as $item) @endforeach @if($order->tax_amount > 0) @endif @if($order->shipping_amount > 0) @endif @if($order->discount_amount > 0) @endif
Product Price Quantity Total
{{ $item->product_name }}
@if($item->variation_details) {{ $item->variation_details }} @endif @if($item->product_sku)
SKU: {{ $item->product_sku }}
@endif
RM {{ number_format($item->unit_price, 2) }} {{ $item->quantity }} RM {{ number_format($item->total_price, 2) }}
Subtotal: RM {{ number_format($order->subtotal, 2) }}
Tax: RM {{ number_format($order->tax_amount, 2) }}
Shipping: RM {{ number_format($order->shipping_amount, 2) }}
Discount: -RM {{ number_format($order->discount_amount, 2) }}
Total: RM {{ number_format($order->total_amount, 2) }}

Customer Information

Name:
{{ $order->customer_name }}
Email:
{{ $order->customer_email }}
@if($order->customer_phone)
Phone:
{{ $order->customer_phone }}
@endif
@if($order->shipping_address_line_1)

Shipping Address

{{ $order->shipping_address_line_1 }}
@if($order->shipping_address_line_2) {{ $order->shipping_address_line_2 }}
@endif {{ $order->shipping_city }}, {{ $order->shipping_state }} {{ $order->shipping_postal_code }}
{{ $order->shipping_country }}
@endif