Order Confirmation

Thank you for your purchase!

Dear {{ $order->roblox_username ?? 'Customer' }},

Your order has been received and is being processed. Here are your order details:

Order #{{ $order->order_number }}

Date: {{ $order->created_at->format('d M Y H:i') }}

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

Items Ordered:

@foreach($order->items as $item) @endforeach @if($order->discount > 0) @endif
Product Qty Price
{{ $item->product->name }} {{ $item->quantity }} Rp {{ number_format($item->price, 0, ',', '.') }}
Subtotal: Rp {{ number_format($order->subtotal, 0, ',', '.') }}
Discount: -Rp {{ number_format($order->discount, 0, ',', '.') }}
Fee: Rp {{ number_format($order->fee, 0, ',', '.') }}
Total: Rp {{ number_format($order->total, 0, ',', '.') }}

Delivery: Your items will be delivered to Roblox username: {{ $order->roblox_username }}

You can track your order status in your account dashboard.

View Order Details