{{ $item->product->productName }}
@if($sizeName)
Size: {{ $sizeName }}
@endif
@if($item->color_name)
Color: {{ $item->color_name }}
@endif
Qty: {{ $item->quantity }}
@if(!empty($addons))
Addons:
@foreach($addons as $addon)
{{ $addon['label'] }}
(+₹{{ number_format($addon['line_total'], 2) }})
@endforeach
@endif
₹{{ number_format($sellPrice, 2) }}
@if($oldPrice > 0 && $oldPrice > $sellPrice)
₹{{ number_format($oldPrice, 2) }}
@endif