@php Theme::layout('full-width'); Theme::asset()->usePath()->add('lightGallery-css', 'plugins/lightGallery/css/lightgallery.min.css'); Theme::asset()->container('footer')->usePath() ->add('lightGallery-js', 'plugins/lightGallery/js/lightgallery.min.js', ['jquery']); $product->loadMissing('productLabels'); Theme::asset() ->container('header') ->scriptUsingPath('vue.js', 'plugins/vue.global.min.js'); Theme::asset() ->container('footer') ->scriptUsingPath('app.js', 'js/app.js'); @endphp
@foreach ($productImages as $thumb)
{{ $product->name }}
@endforeach

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

 ({!! $product->stock_status_html !!})
@if ($product->sku) {{ __('SKU') }}: {{ $product->sku }} @endif @if (EcommerceHelper::isReviewEnabled()) @if ($product->reviews_count > 0) @if ($product->sku) - @endif
({{ $product->reviews_count }})
@endif @endif

{{ format_price($product->front_sale_price_with_taxes) }}  front_sale_price == $product->price) style="display: none" @endif>{{ format_price($product->price_with_taxes) }}

@if (EcommerceHelper::isWishlistEnabled()) {{ __('Add to wishlist') }} @endif @if (EcommerceHelper::isCompareEnabled()) {{ __('Compare') }} @endif

{!! apply_filters('ecommerce_before_product_description', null, $product) !!}
{!! BaseHelper::clean($product->description) !!}
{!! apply_filters('ecommerce_after_product_description', null, $product) !!}
@if (EcommerceHelper::isCartEnabled())
@csrf @if ($product->variations()->count() > 0) {!! render_product_swatches($product, [ 'selected' => $selectedAttrs, 'view' => Theme::getThemeNamespace() . '::views.ecommerce.attributes.swatches-renderer' ]) !!} @endif {!! render_product_options($product) !!} {!! apply_filters(ECOMMERCE_PRODUCT_DETAIL_EXTRA_HTML, null, $product) !!}
@if ($product->isOutOfStock()) ({{ __('Out of stock') }}) @endif
@if (EcommerceHelper::isQuickBuyButtonEnabled())   @endif
@endif
@if (!$product->tags->isEmpty())
{{ __('Tags') }}:
@foreach ($product->tags as $tag) {{ $tag->name }} @endforeach
@endif
{!! BaseHelper::clean($product->content) !!}
@if (is_plugin_active('faq') && count($product->faq_items) > 0)
@foreach($product->faq_items as $faq)

{!! BaseHelper::clean($faq[1]['value']) !!}
@endforeach
@endif @if (EcommerceHelper::isReviewEnabled())
@if ($product->reviews_count) @if (count($product->review_images))

{{ __('Images from customer (:count)', ['count' => count($product->review_images)]) }}

@endif

{{ __('Reviews for ":product"', ['product' => $product->name]) }}

@if ($product->reviews_count > 0)
{{ number_format($product->reviews_avg) }} ({{ $product->reviews_count }} {{ __('reviews') }})
@endif
@endif {!! Form::open(['route' => 'public.reviews.create', 'method' => 'post', 'class' => 'form--review-product form-review-product', 'files' => true]) !!}

{{ __('Submit your review') }}

@if (!auth('customer')->check())

{{ __('Please') }} {{ __('login') }} {{ __('to write review!') }}

@endif
{{ __('Upload photos') }}
{{ __('You can upload up to :total photos, each photo maximum size is :max kilobytes', [ 'total' => EcommerceHelper::reviewMaxFileNumber(), 'max' => EcommerceHelper::reviewMaxFileSize(true), ]) }}
{!! Form::close() !!}
@endif
@if (theme_option('facebook_comment_enabled_in_product', 'yes') == 'yes')
{!! apply_filters(BASE_FILTER_PUBLIC_COMMENT_AREA, Theme::partial('comments')) !!} @endif @php $crossSellProducts = get_cross_sale_products($product); @endphp @if (count($crossSellProducts) > 0) @endif