@foreach($cartItems as $item)
{{ $item['product']->name }}
@if($item['variant_value'])
{{ $item['variant_value']->variant->name }}: {{ $item['variant_value']->value }}
@endif
Qty: {{ $item['quantity'] }}
{{ number_format($item['subtotal'], 2) }}€
@endforeach
Subtotal
{{ number_format($subtotal, 2) }}€
@if($discount > 0)
Desconto
-{{ number_format($discount, 2) }}€
@endif
@if($couponDiscount > 0)
Cupão ({{ $appliedCoupon->code }})
-{{ number_format($couponDiscount, 2) }}€
@endif
@if($ivaAmount > 0)
IVA ({{ PriceHelper::getIvaPercentage() }}%)
{{ number_format($ivaAmount, 2) }}€
@endif
@if($giftCardDiscount > 0)
Gift Card ({{ $giftCardCode }})
-{{ number_format($giftCardDiscount, 2) }}€
@endif
Total
{{ number_format($total, 2) }}€