|
{{ $product->name }} @if ($product->isOutOfStock()) ({!! $product->stock_status_html !!}) @endif
{{ $cartItem->options['attributes'] ?? '' }}
@if (!empty($cartItem->options['options']))
{!! render_product_options_info($cartItem->options['options'], $product, true) !!}
@endif
@if (!empty($cartItem->options['extras']) && is_array($cartItem->options['extras']))
@foreach($cartItem->options['extras'] as $option)
@if (!empty($option['key']) && !empty($option['value']))
{{ $option['key'] }}: {{ $option['value'] }}
@endif
@endforeach
@endif
|
{{ format_price($cartItem->price) }}
@if ($product->front_sale_price != $product->price)
{{ format_price($product->price) }}
@endif
|
|
{{ format_price($cartItem->price * $cartItem->qty) }}
|
|
@endif
@endforeach