{!! Theme::partial('breadcrumbs') !!}
{!! Theme::partial('ecommerce.product-gallery', compact('product', 'productImages')) !!}
{!! Theme::partial('ecommerce.product-info', compact('product', 'productVariation', 'selectedAttrs')) !!}
{{-- {!! BaseHelper::clean($product->content) !!} --}} {!! apply_filters('ecommerce_before_product_description', null, $product) !!}

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

{!! apply_filters('ecommerce_after_product_description', null, $product) !!}
{!! apply_filters(BASE_FILTER_PUBLIC_COMMENT_AREA, null, $product) !!}
@if (is_plugin_active('faq') && count($product->faq_items) > 0)
{!! Theme::partial('ecommerce.faq-items', compact('product')) !!}
@endif @if (is_plugin_active('marketplace') && $product->store_id)
@include(Theme::getThemeNamespace('views.marketplace.includes.info-box'), ['store' => $product->store])
@endif @if (EcommerceHelper::isReviewEnabled())
@include('plugins/ecommerce::themes.includes.reviews')
@endif
@if (($products = get_related_products($product)) && $products->count())

{{ __('You may also like') }}

{{ __('Take it to your cart') }}

@foreach ($products as $item)
{!! Theme::partial('ecommerce.product-item', ['product' => $item]) !!}
@endforeach
@endif