@foreach ($product->productLabels as $label)
color) style="background-color: {{ $label->color }}" @endif>{{ $label->name }}
@endforeach
{!! BaseHelper::clean($product->name) !!}
@if (EcommerceHelper::isReviewEnabled())
({{ __(':count reviews', ['count' => $product->reviews_count]) }})
@endif
{{ format_price($product->front_sale_price_with_taxes) }}
front_sale_price == $product->price) style="display: none" @endif>
{{ get_sale_percentage($product->price, $product->front_sale_price) }} {{ __('Off') }}
front_sale_price == $product->price) style="display: none" @endif>{{ format_price($product->price_with_taxes) }}
@if (is_plugin_active('marketplace') && $product->store_id)
{{ __('Sold By') }}: {!! BaseHelper::clean($product->store->name) !!}
@endif
{!! apply_filters('ecommerce_before_product_description', null, $product) !!}
{!! BaseHelper::clean($product->description) !!}
{!! apply_filters('ecommerce_after_product_description', null, $product) !!}
@if ($product->variations()->count() > 0)
{!! render_product_swatches($product, [
'selected' => $selectedAttrs,
'view' => Theme::getThemeNamespace() . '::views.ecommerce.attributes.swatches-renderer'
]) !!}
@endif
@if ($product->options()->count() > 0 && isset($product->toArray()['options']))
{!! render_product_options($product) !!}
@endif
{!! Theme::partial('product-availability', compact('product', 'productVariation')) !!}
- sku) style="display: none" @endif id="product-sku">
{{ __('SKU') }}: {{ $product->sku }}
@if ($product->categories->count())
-
{{ __('Categories') }}:
@foreach($product->categories as $category)
{!! BaseHelper::clean($category->name) !!}@if (!$loop->last),@endif
@endforeach
@endif
@if ($product->tags->count())
-
{{ __('Tags') }}:
@foreach($product->tags as $tag)
{{ $tag->name }}@if (!$loop->last),@endif
@endforeach
@endif
@if ($product->brand->id)
-
{{ __('Brands') }}:
{{ $product->brand->name }}
@endif