{{ __('Email to a Friend') }}

{{ $product->name }}

{{ __('Brands') }}: {{ $product->brand->name }}
@if (EcommerceHelper::isReviewEnabled())
({{ __(':count reviews', ['count' => $product->reviews_count]) }})
@endif
{{ format_price($product->front_sale_price_with_taxes) }} @if ($product->front_sale_price !== $product->price) {{ format_price($product->price_with_taxes) }} {{ __(':percentage Off', ['percentage' => get_sale_percentage($product->price, $product->front_sale_price)]) }} @endif

{!! clean($product->description) !!}

@if ($product->variations()->count() > 0)
{!! render_product_swatches($product, [ 'selected' => $selectedAttrs, 'view' => Theme::getThemeNamespace() . '::views.ecommerce.attributes.swatches-renderer' ]) !!}
@if ($product->isOutOfStock()) ({{ __('Out of stock') }}) @endif
@endif
@csrf {!! apply_filters(ECOMMERCE_PRODUCT_DETAIL_EXTRA_HTML, null) !!}
    @if ($product->sku)
  • {{ __('SKU') }}: {{ $product->sku }}
  • @endif @if ($product->categories->count())
  • {{ __('Categories') }}: @foreach($product->categories as $category) {{ $category->name }}@if (!$loop->last),@endif @endforeach
  • @endif @if ($product->tags->count())
  • {{ __('Tags') }}: @foreach($product->tags as $tag) @if (!$loop->last),@endif @endforeach
  • @endif
  • {{ __('Availability') }}: {!! clean($product->stock_status_html) !!}