{{ config('app.name', "D'Shop") }}

Invoice {{ $order->invoice_number }} · {{ $order->created_at->format('d M Y, H:i') }}

@foreach ($order->items as $item) @endforeach
Produk Qty Subtotal
{{ $item->product_name }} {{ $item->quantity }} x Rp{{ number_format($item->unit_price, 0, ',', '.') }} Rp{{ number_format($item->subtotal, 0, ',', '.') }}
Subtotal Rp{{ number_format($order->subtotal_amount, 0, ',', '.') }}
Total Bayar Rp{{ number_format($order->grand_total, 0, ',', '.') }}

Pelanggan: {{ $order->shipping_address['recipient_name'] ?? 'Walk-in' }}

Kasir: {{ $order->cashier?->name ?? '-' }}

Status: {{ strtoupper($order->payment_status) }}

Terima kasih telah berbelanja di {{ config('app.name', "D'Shop") }}.