@php $currentLocale = app()->getLocale(); $isRTL = in_array($currentLocale, ['ar', 'he', 'fa', 'ur']); // Thumb carousel options $thumbOptions = [ 'slidesToShow' => 4, 'slidesToScroll' => 1, 'autoplay' => true, 'centerMode' => true, 'centerPadding' => 0, 'vertical' => true, 'asNavFor' => '.product-details__carousel', 'focusOnSelect' => true, 'verticalSwiping' => true, 'dots' => false, 'arrows' => false, 'responsive' => [ [ 'breakpoint' => 1200, 'settings' => [ 'slidesToShow' => 3 ] ], [ 'breakpoint' => 992, 'settings' => [ 'vertical' => false, 'verticalSwiping' => false ] ], [ 'breakpoint' => 431, 'settings' => [ 'slidesToShow' => 3, 'vertical' => false, 'verticalSwiping' => false ] ] ] ]; // Add RTL option if needed if ($isRTL) { $thumbOptions['rtl'] = true; } // Main carousel options $mainOptions = [ 'slidesToShow' => 1, 'slidesToScroll' => 1, 'autoplay' => true, 'asNavFor' => '.product-details__thumb', 'centerPadding' => 0, 'vertical' => true, 'verticalSwiping' => true, 'dots' => false, 'arrows' => false, 'responsive' => [ [ 'breakpoint' => 992, 'settings' => [ 'slidesToShow' => 1, 'vertical' => false, 'verticalSwiping' => false ] ] ] ]; // Add RTL option if needed if ($isRTL) { $mainOptions['rtl'] = true; } @endphp @foreach ($sections as $section) @if ($section->key == 'products') @include('Website.partials._banner', ['page_title' => $product->name]) @endif @endforeach

{{ $product->name }}

{!! $product->long_desc !!}

@include('Website.partials._contact_info')

{{ __('website.other_products') }}

@push('scripts') @endpush