@foreach ($cart->content()->reverse() as $cartItem)
  • !$loop->last]) wire:key="cart-item-{{ $cartItem->rowId }}"> @unless($previewMode)
    @else

    @if ($cartItem->qty > 1) {{ $cartItem->qty }} @lang('igniter.cart::default.text_times') @endif {{ $cartItem->name }}

    @includeWhen($cartItem->hasOptions(), 'igniter-orange::includes.cartbox.list-item-options', ['itemOptions' => $cartItem->options]) @if (!empty($cartItem->comment))

    {{ $cartItem->comment }}

    @endif
    @endunless
    @if ($cartItem->hasConditions()) {{currency_format($cartItem->subtotalWithoutConditions())}}/ @endif {{ currency_format($cartItem->subtotal) }}
  • @endforeach