{{ __('Product') }} | {{ __('Price') }} | {{ __('Quantity') }} | {{ __('Total') }} | ||
---|---|---|---|---|---|
{{ RvMedia::image($cartItem->options['image'], $product->original_product->name, 'thumb') }} |
{!! apply_filters('ecommerce_cart_before_item_content', null, $cartItem) !!}
{{ $product->original_product->name }}
$product->isOutOfStock(), 'text-success' => ! $product->isOutOfStock()])>
@if ($product->isOutOfStock())
({{ __('Out of stock') }})
@else
({{ __('In stock') }})
@endif
@if (is_plugin_active('marketplace') && $product->original_product->store->id)
{{ __('Vendor:') }}
{{ $product->original_product->store->name }}
@endif
{{ $cartItem->options['attributes'] ?? '' }}
@if (EcommerceHelper::isEnabledProductOptions() && !empty($cartItem->options['options']))
{!! render_product_options_html($cartItem->options['options'], $product->price()->getPrice()) !!}
@endif
@include(
EcommerceHelper::viewPath('includes.cart-item-options-extras'),
['options' => $cartItem->options]
)
{!! apply_filters('ecommerce_cart_after_item_content', null, $cartItem) !!}
|
@include(EcommerceHelper::viewPath('includes.product-price')) | @include(EcommerceHelper::viewPath('includes.cart-quantity')) | {{ format_price($cartItem->price * $cartItem->qty) }} | $cartItem->qty]) !!} > |