Customer Name: {{ $order->customer_name }}
Email: {{ $order->customer_email }}
Phone: {{ $order->customer_phone }}
Billing Address: {{ $order->billing_address }}
Shipping Address: {{ $order->shipping_address }}
Description: {{ $order->description }}
Total Price: ₹{{ number_format($order->total_price, 2) }}
Status: {{ $order->status == 1 ? 'Paid Online' : ucfirst($order->status) }}
| # | Product | Qty | Price |
|---|---|---|---|
| {{ $index + 1 }} | {{ $productName }} | {{ $quantities[$index] }} | ₹{{ number_format($prices[$index], 2) }} |