![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/job-board.corals.io/resources/themes/compo/partials/ |
<section class="container mt-80 mb-100"> <div class="row"> <div class="col-lg-12"> <h3 class="heading text-center">{{ $title??'Featured Products' }}</h3> </div> @php $products = \Shop::getFeaturedProducts(); @endphp @if(!$products->isEmpty()) <div class="owl-carousel" data-owl-carousel="{ "nav": false,"rewindNav": false,"rtl": @if(\Language::isRTL()){{'true'}}@else {{'false'}}@endif,"loop": true,"autoplay": true,"autoplay": true,"autoplayTimeout": 4000, "dots": true, "margin": 30, "responsive": {"0":{"items":1},"576":{"items":2},"768":{"items":3},"991":{"items":4},"1200":{"items":4}} }"> @foreach($products as $product) @include('partials.product_grid_item',compact('product')) @endforeach </div> @endif </div> </section>