New Order Placed - # {{ $order->invoice_id ?? $order->order_id }}

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 Details

@php $productNames = json_decode($order->product_names, true); $quantities = json_decode($order->quantities, true); $prices = json_decode($order->prices, true); @endphp @foreach ($productNames as $index => $productName) @endforeach
# Product Qty Price
{{ $index + 1 }} {{ $productName }} {{ $quantities[$index] }} ₹{{ number_format($prices[$index], 2) }}