{{ $product->original_product->name }} @if ($product->isOutOfStock()) ({!! BaseHelper::clean($product->stock_status_html) !!}) @endif
@if($product->variation_attributes){{ $product->variation_attributes }}
@endif @if (get_ecommerce_setting('checkout_product_quantity_editable', true)){{ __('Tax') }}: {{ format_price($cartItem->tax * $cartItem->qty) }} @if ($cartItem->options && $cartItem->options->taxClasses) ( @foreach ($cartItem->options->taxClasses as $taxName => $taxRate) {{ $taxName }} {{ $taxRate }}%@if (!$loop->last), @endif @endforeach ) @elseif ($cartItem->taxRate > 0) ({{ $cartItem->taxRate }}%) @endif
@endif {!! apply_filters('ecommerce_cart_after_item_content', null, $cartItem) !!}{{ format_price($cartItem->price) }}
@if (EcommerceHelper::isTaxEnabled() && $cartItem->tax > 0){{ __('Total') }}: {{ format_price(($cartItem->price + $cartItem->tax) * $cartItem->qty) }}
@else{{ __('Total') }}: {{ format_price($cartItem->price * $cartItem->qty) }}
@endif