{!! Theme::partial('ecommerce.product-gallery', compact('product', 'productImages')) !!}

{{ $product->name }}

{!! Theme::partial('ecommerce.product-price', compact('product')) !!} @if (is_plugin_active('marketplace') && $product->store_id)
{{ __('Sold By') }}: {{ $product->store->name }}
@endif {!! Theme::partial('ecommerce.product-availability', compact('product', 'productVariation')) !!} {{--
{!! apply_filters('ecommerce_before_product_description', null, $product) !!} {!! BaseHelper::clean($product->description) !!} {!! apply_filters('ecommerce_after_product_description', null, $product) !!}
--}} {!! Theme::partial('ecommerce.product-cart-form', compact('product', 'wishlistIds', 'selectedAttrs') + [ 'withButtons' => true, 'withVariations' => true, 'withProductOptions' => true, 'withBuyNow' => true, ], ) !!} {{-- @endif --}}
{{ __('SKU') }}: {{ $product->sku }}
@if ($product->categories->isNotEmpty())
{{ __('Categories') }}: @foreach ($product->categories as $category) {{ $category->name }} @if (!$loop->last) , @endif @endforeach
@endif @if ($product->tags->isNotEmpty())
{{ __('Tags') }}: @foreach ($product->tags as $tag) {{ $tag->name }} @if (!$loop->last) , @endif @endforeach
@endif
@if (theme_option('social_share_enabled', 'yes') == 'yes')
{!! Theme::partial('share-socials', compact('product')) !!}
@endif