New Quotation Received

Order #{{ $order->order_number }}

Hello {{ $order->name }},

Detailed quotation for your recent order #{{ $order->order_number }} is ready for your review. Please review the updated prices and confirm your order.

@foreach($order->items as $item) @endforeach
Product Price Qty Total
{{ $item->product->name ?? 'Product' }}
@if(isset($item->options['attributes']))
@foreach($item->options['attributes'] as $attr) {{ $attr['attribute'] }}: {{ $attr['value'] }}   @endforeach
@endif @if(isset($item->options['discount_percentage']) && $item->options['discount_percentage'] > 0)
{{ $item->options['discount_percentage'] }}% Discount Applied
@endif
₹{{ number_format($item->price, 2) }} {{ $item->quantity }} ₹{{ number_format($item->total, 2) }}
Subtotal ₹{{ number_format($order->subtotal, 2) }}
Shipping ₹{{ number_format($order->shipping_cost, 2) }}
Total ₹{{ number_format($order->total, 2) }}
Review & Accept Quotation