Customer: {{ $order->email }}
Roblox Username: {{ $order->roblox_username }}
Order Date: {{ $order->created_at->format('d M Y H:i') }}
Payment Method: {{ ucfirst($order->payment->payment_method ?? 'N/A') }}
Order Items:
| Product | Qty | Price |
|---|---|---|
| {{ $item->product->name }} | {{ $item->quantity }} | Rp {{ number_format($item->price, 0, ',', '.') }} |
| Subtotal: | Rp {{ number_format($order->subtotal, 0, ',', '.') }} | |
| Fee: | Rp {{ number_format($order->fee, 0, ',', '.') }} | |
| Total: | Rp {{ number_format($order->total, 0, ',', '.') }} | |