|
Lugani
Premium Fashion & Accessories
|
{{ $order->status === 'quotation_sent' ? 'QUOTATION' : 'INVOICE' }}
#{{ $order->order_number }}
Date: {{ $order->created_at->format('M d, Y') }}
Status: {{ $order->payment_status }}
|
| Product | Price | Qty | Total |
|---|---|---|---|
|
{{ $item->product->name }}
@if($item->variation)
@foreach($item->variation->options as $option)
{{ $option->attribute_value }}@if(!$loop->last) / @endif
@endforeach
@endif
|
₹{{ number_format($item->price, 2) }} | {{ $item->quantity }} | ₹{{ number_format($item->total, 2) }} |
| Subtotal: | ₹{{ number_format($order->subtotal, 2) }} |
| Discount: | -₹{{ number_format($order->discount, 2) }} |
| Gift Card: | -₹{{ number_format($order->gift_card_discount, 2) }} |
| Points Redeemed ({{ $order->points_redeemed }}): | -₹{{ number_format($order->points_discount, 2) }} |
| Shipping: | @if($order->shipping_cost > 0) ₹{{ number_format($order->shipping_cost, 2) }} @else Free @endif |
| Total: | ₹{{ number_format($order->total, 2) }} |