Amount: Rs. {{ number_format((float) $order->total, 2) }}
BV: {{ number_format((float) $order->total_bv, 2) }}
Payment: {{ strtoupper((string) $order->payment_method) }}
Pay Status: {{ strtoupper((string) $order->payment_status) }}
Items:
{{ $order->items->map(fn ($item) => $item->product_name.' x '.$item->quantity)->implode(', ') }}