shell bypass 403
<?php $__env->startSection('page_title'); ?>
| <?php echo e(trans('labels.home')); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<!-- Slider Area Start Here -->
<?php if(count($sliders) > 0): ?>
<section class="my-6 mb-0">
<div class="container">
<div class="slider-area overflow-hidden rounded-4">
<div id="slidercarousel" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<?php $__currentLoopData = $sliders; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $sliderdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="carousel-item <?php echo e($key == 0 ? 'active' : ''); ?>">
<?php if($sliderdata->link_text == '' || $sliderdata->link_text == null): ?>
<?php if($sliderdata['item_info'] != ''): ?>
<a href="<?php echo e(URL::to('/item-' . $sliderdata['item_info']->slug)); ?>">
<?php elseif($sliderdata['category_info'] != ''): ?>
<a
href="<?php echo e(URL::to('/menu/?category=' . $sliderdata['category_info']->slug)); ?>">
<?php elseif($sliderdata->custom_link != ''): ?>
<a href="<?php echo e($sliderdata->custom_link); ?>" target="_blank">
<?php else: ?>
<a href="javascript:void(0)">
<?php endif; ?>
<img src="<?php echo e(helper::image_path($sliderdata->image)); ?>" class="d-block img-fluid"
alt="slider"></a>
<div
class="carousel-caption d-flex h-100 text-start justify-content-center flex-column">
<h5><?php echo e($sliderdata->title); ?></h5>
<p><?php echo e($sliderdata->description); ?></p>
</div>
<?php else: ?>
<img src="<?php echo e(helper::image_path($sliderdata->image)); ?>" class="d-block img-fluid"
alt="slider">
<div
class="carousel-caption d-flex h-100 text-start justify-content-center flex-column">
<h5><?php echo e($sliderdata->title); ?></h5>
<p><?php echo e($sliderdata->description); ?></p>
<div>
<?php if($sliderdata['item_info'] != ''): ?>
<a href="<?php echo e(URL::to('/item-' . $sliderdata['item_info']->slug)); ?>"
class="btn btn-primary fw-bold px-4 py-2"><?php echo e(trans('labels.explore')); ?>
<i class="fa-solid fa-circle-arrow-right"></i> </a>
<?php endif; ?>
<?php if($sliderdata['category_info'] != ''): ?>
<a href="<?php echo e(URL::to('/menu/?category=' . $sliderdata['category_info']->slug)); ?>"
class="btn btn-primary fw-bold px-4 py-2"><?php echo e(trans('labels.explore')); ?>
<i class="fa-solid fa-circle-arrow-right"></i> </a>
<?php endif; ?>
<?php if($sliderdata->custom_link != ''): ?>
<a href="<?php echo e($sliderdata->custom_link); ?>" target="_blank"
class="btn btn-primary fw-bold px-4 py-2"><?php echo e(trans('labels.explore')); ?>
<i class="fa-solid fa-circle-arrow-right"></i> </a>
<?php endif; ?>
</div>
</div>
<?php endif; ?>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
<?php if(count($sliders) > 1): ?>
<div class="carousel-indicators">
<?php $__currentLoopData = $sliders; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $sliderdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<button type="button" data-bs-target="#slidercarousel"
data-bs-slide-to="<?php echo e($key); ?>"
class="<?php if($key == 0): ?> active <?php endif; ?>" aria-current="true"
aria-label="Slide 1"></button>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
<?php endif; ?>
<button class="carousel-control-prev btn-none <?php echo e(count($sliders) == 1 ? 'd-none' : ''); ?>"
type="button" data-bs-target="#slidercarousel" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true">
<i class="fa-regular fa-angle-left"></i>
</span>
</button>
<button class="carousel-control-next btn-none <?php echo e(count($sliders) == 1 ? 'd-none' : ''); ?>"
type="button" data-bs-target="#slidercarousel" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true">
<i class="fa-regular fa-angle-right"></i>
</span>
</button>
</div>
</div>
</div>
</section>
<?php endif; ?>
<!-- Slider Area End Here -->
<?php if(@helper::checkaddons('coupon')): ?>
<?php if(count(@helper::getcoupons()) > 0): ?>
<section class="sec-padding pb-0">
<div class="offer-slider owl-carousel owl-theme py-3">
<?php $__currentLoopData = helper::getcoupons(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="item">
<p class="m-0 py-1 text-center text-white whitespace-nowrap"><?php echo e($item->offer_name); ?> :
<?php echo e($item->offer_code); ?></p>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</section>
<?php endif; ?>
<?php endif; ?>
<!-- Features start Here -->
<?php if(count(helper::footer_features()) > 0): ?>
<section class="sec-padding">
<div class="container">
<div class="d-lg-block d-none">
<div class="row justify-content-center g-4">
<?php $__currentLoopData = helper::footer_features(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $feature): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="col-sm-6 col-lg-3 col-xl-3 d-md-flex justify-content-center border-end">
<div class="quality h-100">
<div class="quality-wrapper d-flex align-items-center">
<div class="quality-icon"> <?php echo $feature->icon; ?> </div>
<div class="quality-content px-3">
<h3 class="mb-0"><?php echo e($feature->title); ?></h3>
<p class="text-muted"><?php echo e($feature->description); ?></p>
</div>
</div>
</div>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
<div class="footer-fiechar-slider owl-carousel owl-theme d-lg-none">
<?php $__currentLoopData = helper::footer_features(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $feature): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="item">
<div class="col">
<div class="quality w-100 h-100">
<div class="quality-wrapper d-flex gap-3 align-items-center justify-content-center">
<div class="quality-icon"> <?php echo $feature->icon; ?> </div>
<div class="quality-content">
<h3 class="mb-0"><?php echo e($feature->title); ?></h3>
<p class="text-muted"><?php echo e($feature->description); ?></p>
</div>
</div>
</div>
</div>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
</section>
<?php endif; ?>
<!-- Features End Here -->
<!-- Promotional topbanners Start Here -->
<?php if(count($banners['topbanners']) > 0): ?>
<section class="banner1">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div id="news-slider" class="owl-carousel">
<?php $__currentLoopData = $banners['topbanners']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $bannerdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="post-slide">
<div class="post-img">
<?php if($bannerdata['item_info'] != ''): ?>
<a href="<?php echo e(URL::to('/item-' . $bannerdata['item_info']->slug)); ?>">
<?php elseif($bannerdata['category_info'] != ''): ?>
<a
href="<?php echo e(URL::to('/menu/?category=' . $bannerdata['category_info']->slug)); ?>">
<?php else: ?>
<a href="javascript:void(0);">
<?php endif; ?>
<img src="<?php echo e($bannerdata['image']); ?>" alt="banner">
</a>
</div>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
</div>
</div>
</section>
<?php endif; ?>
<!-- Promotional topbanners End Here -->
<section class="about-product sec-padding">
<div class="container">
<div class="row g-2 align-items-center justify-content-between pt-4">
<div class="col-lg-6 col-md-12 d-md-block d-none">
<div class="position-relative">
<img src="<?php echo e(url('storage/app/public/admin-assets/images/fruit-mask-2.png')); ?>" alt="fruit-mask"
class="w-100">
<img src="<?php echo e(helper::image_path($setting->why_choose_image)); ?>" alt="fruits"
class="fruits-img position-absolute top-50 start-50 translate-middle w-100">
</div>
</div>
<div class="col-lg-6 col-md-12">
<h5 class="truncate-1 color-changer"><?php echo e($setting->why_choose_title); ?></h5>
<h3 class="fw-bold fs-2 mb-2 truncate-2 color-changer"><?php echo e($setting->why_choose_subtitle); ?></h3>
<p class="text-muted fw-700 truncate-3"><?php echo e($setting->why_choose_description); ?></p>
<div class="row g-md-4 g-3 mt-3">
<?php $__currentLoopData = $choose; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="col-md-6">
<div class="d-flex align-items-center">
<div class="fruit_list col-4">
<img src="<?php echo e(helper::image_path($item->image)); ?>" class="w-100 h-100"
class="w-100 h-100">
</div>
<div class="px-3">
<h5 class="mb-2 fs-6 fw-bold line-2 truncate-1 color-changer"><?php echo e($item->title); ?></h5>
<p class="fs-7 fw-500 mb-0 line-2 text-muted"> <?php echo e(Str::limit($item->subtitle, 50)); ?></p>
</div>
</div>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
</div>
</div>
</section>
<!-- Category Section Start Here -->
<?php if(count(helper::get_categories()) > 0): ?>
<section class="category">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="row align-items-center justify-content-between mb-5 g-3">
<div class="col-auto">
<h2 class="sec-title fw-800 text-capitalize color-changer">
<?php echo e(trans('labels.featured_categories')); ?>
</h2>
<p class="sub-title text-capitalize m-0"><?php echo e(trans('labels.categories_text')); ?></p>
</div>
<div class="col-auto text-end align-center">
<a href="<?php echo e(route('categories')); ?>"
class="btn btn-secondary px-4"><?php echo e(trans('labels.view_all')); ?> <i
class="fa-regular fa-arrow-<?php echo e(session()->get('direction') == '2' ? 'left' : 'right'); ?>"></i></a>
</div>
</div>
<div id="category" class="owl-carousel mt-2">
<?php $__currentLoopData = helper::get_categories(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $categorydata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="category-wrapper card">
<a href="<?php echo e(URL::to('/menu/?category=' . $categorydata->slug)); ?>">
<div class="cat rounded-circle d-flex m-auto">
<img src="<?php echo e(helper::image_path($categorydata->image)); ?>"
class="rounded-circle" alt="category">
</div>
<div class="card-body p-0">
<p class="text-dark color-changer text-center my-2">
<?php echo e($categorydata->category_name); ?></p>
</div>
</a>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
</div>
</div>
</section>
<?php endif; ?>
<!-- Category Section End Here -->
<!-- topitemlist dishes Section Start Here -->
<?php if(count($topitemlist) > 0): ?>
<section class="menu sec-padding">
<div class="container">
<div class="row align-items-center justify-content-between mb-5 g-3">
<div class="col-auto menu-heading">
<h2 class="sec-title fw-800 color-changer text-capitalize"><?php echo e(trans('labels.popular_products')); ?>
</h2>
<p class="sub-title text-capitalize m-0"><?php echo e(trans('labels.top_trending')); ?></p>
</div>
<div class="col-auto">
<a href="<?php echo e(URL::to('/view-all?type=topitems')); ?>"
class="btn btn-secondary px-4"><?php echo e(trans('labels.view_all')); ?> <i
class="fa-regular fa-arrow-<?php echo e(session()->get('direction') == '2' ? 'left' : 'right'); ?>"></i></a>
</div>
</div>
<div class="row row-cols-xl-5 row-cols-lg-4 row-cols-md-3 row-cols-2 g-sm-3 g-2">
<?php if(helper::appdata()->product_card_view == 1): ?>
<?php $__currentLoopData = $topitemlist; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.grid_view.product_view_1', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 2): ?>
<?php $__currentLoopData = $topitemlist; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.grid_view.product_view_2', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 3): ?>
<?php $__currentLoopData = $topitemlist; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.grid_view.product_view_3', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 4): ?>
<?php $__currentLoopData = $topitemlist; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.grid_view.product_view_4', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 5): ?>
<?php $__currentLoopData = $topitemlist; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.grid_view.product_view_5', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 6): ?>
<?php $__currentLoopData = $topitemlist; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.grid_view.product_view_6', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 7): ?>
<?php $__currentLoopData = $topitemlist; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.grid_view.product_view_7', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 8): ?>
<?php $__currentLoopData = $topitemlist; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.grid_view.product_view_8', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php endif; ?>
</div>
</div>
</section>
<?php endif; ?>
<!-- topitemlist dishes Section End Here -->
<!-- Promotional bannersection1 Start Here -->
<?php if(count($banners['bannersection1']) > 0): ?>
<section class="banner2">
<div class="container">
<div id="banner1" class="carousel slide carousel-fade" data-bs-ride="carousel">
<div class="carousel-inner">
<?php $__currentLoopData = $banners['bannersection1']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $bannerdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="carousel-item <?php echo e($key == 0 ? 'active' : ''); ?>">
<?php if($bannerdata['item_info'] != ''): ?>
<a href="<?php echo e(URL::to('/item-' . $bannerdata['item_info']->slug)); ?>">
<?php elseif($bannerdata['category_info'] != ''): ?>
<a
href=" <?php echo e(URL::to('/menu/?category=' . $bannerdata['category_info']->slug)); ?> ">
<?php else: ?>
<a href="javascript:void(0)">
<?php endif; ?>
<img src="<?php echo e($bannerdata['image']); ?>" height="400" alt="banner2">
</a>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
<button class="carousel-control-prev <?php echo e(count($banners['bannersection1']) == 1 ? 'd-none' : ''); ?>"
type="button" data-bs-target="#banner1" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next <?php echo e(count($banners['bannersection1']) == 1 ? 'd-none' : ''); ?>"
type="button" data-bs-target="#banner1" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<?php endif; ?>
<!-- Promotional bannersection1 End Here -->
<!-- todayspecial Dishes Section Start Here -->
<?php if(count($todayspecial) > 0): ?>
<section class="menu sec-padding">
<div class="container">
<div class="row align-items-center justify-content-between mb-5 g-3">
<div class="col-auto menu-heading">
<h2 class="sec-title color-changer fw-800 text-capitalize">
<?php echo e(trans('labels.daily_best_products')); ?></h2>
<p class="sub-title text-capitalize m-0"><?php echo e(trans('labels.top_special')); ?></p>
</div>
<div class="col-auto">
<a href="<?php echo e(URL::to('/view-all?type=todayspecial')); ?>"
class="btn btn-secondary px-4"><?php echo e(trans('labels.view_all')); ?> <i
class="fa-regular fa-arrow-<?php echo e(session()->get('direction') == '2' ? 'left' : 'right'); ?>"></i></a>
</div>
</div>
<div class="row row-cols-xl-3 row-cols-lg-2 row-cols-sm-2 row-cols-1 g-sm-3 g-2">
<?php if(helper::appdata()->product_card_view == 1): ?>
<?php $__currentLoopData = $todayspecial; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.list_view.listview_product_1', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 2): ?>
<?php $__currentLoopData = $todayspecial; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.list_view.listview_product_2', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 3): ?>
<?php $__currentLoopData = $todayspecial; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.list_view.listview_product_3', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 4): ?>
<?php $__currentLoopData = $todayspecial; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.list_view.listview_product_4', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 5): ?>
<?php $__currentLoopData = $todayspecial; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.list_view.listview_product_5', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 6): ?>
<?php $__currentLoopData = $todayspecial; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.list_view.listview_product_6', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 7): ?>
<?php $__currentLoopData = $todayspecial; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.list_view.listview_product_7', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 8): ?>
<?php $__currentLoopData = $todayspecial; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.list_view.listview_product_8', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php endif; ?>
</div>
</div>
</section>
<?php endif; ?>
<!-- todayspecial Dishes Section End Here -->
<!-- Promotional bannersection2 Start Here -->
<?php if(count($banners['bannersection2']) > 0): ?>
<section class="banner1">
<div class="container">
<div id="bannersection2" class="owl-carousel">
<?php $__currentLoopData = $banners['bannersection2']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $bannerdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="post-slide">
<div class="post-img-">
<?php if($bannerdata['item_info'] != ''): ?>
<a href="<?php echo e(URL::to('/item-' . $bannerdata['item_info']->slug)); ?>">
<?php elseif($bannerdata['category_info'] != ''): ?>
<a href="<?php echo e(URL::to('/menu/?category=' . $bannerdata['category_info']->slug)); ?>">
<?php else: ?>
<a href="javascript:void(0);">
<?php endif; ?>
<img src="<?php echo e($bannerdata['image']); ?>" class="h-100 w-100 object-fit-cover"
alt="banner">
</a>
</div>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
</section>
<?php endif; ?>
<!-- Promotional bannersection2 End Here -->
<!-- recommended Section Start Here -->
<?php if(count($recommended) > 0): ?>
<section class="menu sec-padding">
<div class="container">
<div class="row align-items-center justify-content-between mb-5 g-3">
<div class="col-auto menu-heading">
<h2 class="sec-title color-changer fw-800 text-capitalize"><?php echo e(trans('labels.recently_added')); ?>
</h2>
<p class="sub-title text-capitalize m-0"><?php echo e(trans('labels.top_recommended')); ?></p>
</div>
<div class="col-auto">
<a href="<?php echo e(URL::to('/view-all?type=recommended')); ?>"
class="btn btn-secondary px-4"><?php echo e(trans('labels.view_all')); ?> <i
class="fa-regular fa-arrow-<?php echo e(session()->get('direction') == '2' ? 'left' : 'right'); ?>"></i></a>
</div>
</div>
<div class="row row-cols-xl-5 row-cols-lg-4 row-cols-md-3 row-cols-2 g-sm-3 g-2">
<?php if(helper::appdata()->product_card_view == 1): ?>
<?php $__currentLoopData = $recommended; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.grid_view.product_view_1', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 2): ?>
<?php $__currentLoopData = $recommended; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.grid_view.product_view_2', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 3): ?>
<?php $__currentLoopData = $recommended; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.grid_view.product_view_3', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 4): ?>
<?php $__currentLoopData = $recommended; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.grid_view.product_view_4', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 5): ?>
<?php $__currentLoopData = $recommended; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.grid_view.product_view_5', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 6): ?>
<?php $__currentLoopData = $recommended; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.grid_view.product_view_6', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 7): ?>
<?php $__currentLoopData = $recommended; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.grid_view.product_view_7', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 8): ?>
<?php $__currentLoopData = $recommended; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.grid_view.product_view_8', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php endif; ?>
</div>
</div>
</section>
<?php endif; ?>
<!-- recommended Section End Here -->
<!-- Promotional bannersection3 Start Here -->
<?php if(count($banners['bannersection3']) > 0): ?>
<section class="banner2">
<div class="container">
<div id="banner3" class="carousel slide carousel-fade" data-bs-ride="carousel">
<div class="carousel-inner">
<?php $__currentLoopData = $banners['bannersection3']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $bannerdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="carousel-item <?php echo e($key == 0 ? 'active' : ''); ?>">
<?php if($bannerdata['item_info'] != ''): ?>
<a href="<?php echo e(URL::to('/item-' . $bannerdata['item_info']->slug)); ?>">
<?php elseif($bannerdata['category_info'] != ''): ?>
<a
href=" <?php echo e(URL::to('/menu/?category=' . $bannerdata['category_info']->slug)); ?> ">
<?php else: ?>
<a href="javascript:void(0)">
<?php endif; ?>
<img src="<?php echo e($bannerdata['image']); ?>" height="400" alt="banner3">
</a>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
<button class="carousel-control-prev <?php echo e(count($banners['bannersection3']) == 1 ? 'd-none' : ''); ?>"
type="button" data-bs-target="#banner3" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden"><?php echo e(trans('labels.previous')); ?></span>
</button>
<button class="carousel-control-next <?php echo e(count($banners['bannersection3']) == 1 ? 'd-none' : ''); ?>"
type="button" data-bs-target="#banner3" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden"><?php echo e(trans('labels.next')); ?></span>
</button>
</div>
</div>
</section>
<?php endif; ?>
<!-- Promotional bannersection3 End Here -->
<!-- top deal Section End Here -->
<?php if(@helper::checkaddons('top_deals')): ?>
<?php if(count($topdealsproducts) > 0 && @helper::top_deals() != null): ?>
<section class="top-deal menu position-relative sec-padding">
<div class="container">
<img class="bg-img-1 tomato d-xl-block d-none"
src="<?php echo e(url('storage/app/public/web-assets/images/group-f.png')); ?>" alt="img">
<img class="bg-img-2 leaf" src="<?php echo e(url('storage/app/public/web-assets/images/Leaf1.png')); ?>"
alt="img">
<img class="bg-img-2 slice" src="<?php echo e(url('storage/app/public/web-assets/images/tomato1.png')); ?>"
alt="img">
<div class="">
<div class="row g-4">
<div class="col-xl-4 col-lg-5">
<div class="countdown px-3 py-4 rounded-4 overflow-hidden">
<div class="">
<div
class="row align-items-center text-center justify-content-center mb-lg-5 mb-4">
<div class="col-auto menu-heading mx-auto">
<h2 class="sec-title color-changer fw-800 text-capitalize">
<?php echo e(trans('labels.top_deal')); ?>
</h2>
<p class="sub-title text-capitalize m-0">
<?php echo e(trans('labels.top_deals')); ?>
</p>
</div>
</div>
<div class="countdown-counter" id="countdown" class="mb-4"></div>
<div class="mt-lg-5 mt-4">
<div class="row align-items-center text-center justify-content-center">
<div class="col-auto">
<a href="<?php echo e(URL::to('/view-all?type=topdeals')); ?>"
class="btn btn-outline-primary"><?php echo e(trans('labels.view_all')); ?>
<i
class="fa-solid <?php echo e(session()->get('direction') == '2' ? 'fa-arrow-left' : 'fa-arrow-right'); ?>"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-8 col-lg-7">
<div class="row row-cols-xl-2 row-cols-lg-2 row-cols-sm-2 row-cols-1 g-md-3 g-2">
<?php if(helper::appdata()->product_card_view == 1): ?>
<?php $__currentLoopData = $topdealsproducts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.list_view.listview_product_1', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 2): ?>
<?php $__currentLoopData = $topdealsproducts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.list_view.listview_product_2', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 3): ?>
<?php $__currentLoopData = $topdealsproducts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.list_view.listview_product_3', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 4): ?>
<?php $__currentLoopData = $topdealsproducts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.list_view.listview_product_4', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 5): ?>
<?php $__currentLoopData = $topdealsproducts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.list_view.listview_product_5', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 6): ?>
<?php $__currentLoopData = $topdealsproducts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.list_view.listview_product_6', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 7): ?>
<?php $__currentLoopData = $topdealsproducts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.list_view.listview_product_7', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php elseif(helper::appdata()->product_card_view == 8): ?>
<?php $__currentLoopData = $topdealsproducts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $itemdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php echo $__env->make('web.product_card.list_view.listview_product_8', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
</section>
<?php endif; ?>
<?php endif; ?>
<!-- top deal Section End Here -->
<!-- App Download Section Start Here -->
<?php if(@helper::checkaddons('mobile_app')): ?>
<?php if(!empty(@helper::appdata()->mobile_app_image)): ?>
<section>
<div class="app_download sec-padding py-0">
<div class="container">
<div class="app-download card border-0 bg-gray rounded-5 p-md-5 p-4">
<div class="row align-items-center justify-content-between">
<div class="col-lg-6 col-md-8 col-12 d-flex align-items-center order-md-0 order-2">
<div class="app_content">
<h2 class="mb-2 color-changer"><?php echo e(@helper::appdata()->mobile_app_title); ?></h2>
<span
class="sub-title text-capitalize m-0"><?php echo e(@helper::appdata()->mobile_app_description); ?></span>
<div class="my-4 d-flex">
<?php if(!@helper::appdata()->android == ''): ?>
<a href="<?php echo e(@helper::appdata()->android); ?>" target="_blank">
<img src="<?php echo e(helper::image_path('playstore.png')); ?>" width="153"
height="46" alt="">
</a>
<?php endif; ?>
<?php if(!@helper::appdata()->ios == ''): ?>
<a class="ms-2" href="<?php echo e(@helper::appdata()->ios); ?>" target="_blank">
<img src="<?php echo e(helper::image_path('appstore.svg')); ?>" width="153"
height="46" alt="">
</a>
<?php endif; ?>
</div>
</div>
</div>
<div
class="col-md-4 col-6 mx-auto d-flex justify-content-center align-items-center app-screen">
<img src="<?php echo e(helper::image_path(@helper::appdata()->mobile_app_image)); ?>"
alt="app-screen" class="w-100 object-fit-cover">
</div>
</div>
</div>
</div>
</div>
</section>
<?php endif; ?>
<?php endif; ?>
<!-- App Download Section End Here -->
<!-- Testimonials Section Start Here -->
<?php if(@helper::checkaddons('store_review')): ?>
<?php if(count($testimonials) > 0): ?>
<section class="testimonial">
<div class="container">
<div class="col-12">
<div class="row testimonial-heading align-items-center mb-5">
<h2 class="sec-title color-changer fw-800 text-capitalize"><?php echo e(trans('labels.reviews')); ?></h2>
<p class="sub-title text-capitaliz m-0"><?php echo e(trans('labels.top_testimonial')); ?></p>
</div>
<div class="testimonial-1 owl-carousel owl-theme">
<?php $__currentLoopData = $testimonials; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $testimonialdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="item h-100">
<div class="mx-auto testimonial_review px-3 py-4 rounded-3">
<img src="<?php echo e(helper::image_path($testimonialdata->image)); ?>"
class="img-circle img-responsive mx-auto mb-2" />
<p class="m-0 text-center text-muted mx-auto mb-3 line-3">
<?php echo e(Str::limit($testimonialdata->description, 100)); ?>
</p>
<h6 class="text-capitalize fw-bold mb-1 color-changer text-center">
<?php echo e($testimonialdata->name); ?></h6>
<div class="review-star text-center">
<?php
$count = (int) $testimonialdata->star;
?>
<?php for($i = 0; $i < 5; $i++): ?>
<?php if($i < $count): ?>
<i class="fa-solid fa-star fs-8"></i>
<?php else: ?>
<i class="fa-regular fa-star fs-8"></i>
<?php endif; ?>
<?php endfor; ?>
</div>
</div>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
</div>
</section>
<?php endif; ?>
<?php endif; ?>
<!-- Testimonials Section End Here -->
<!-- Blog Section Start Here -->
<?php if(@helper::checkaddons('blog')): ?>
<?php if(count($getblogs) > 0): ?>
<section>
<div class="blog-wrapper sec-padding pb-0">
<div class="container">
<div class="row align-items-center justify-content-between mb-5 g-3">
<div class="col-auto blog-heading">
<h2 class="sec-title color-changer fw-800 text-capitalize">
<?php echo e(trans('labels.latest_blogs')); ?></h2>
<p class="sub-title text-capitalize m-0"><?php echo e(trans('labels.top_blogs')); ?></p>
</div>
<div class="col-auto">
<a href="<?php echo e(route('blogs')); ?>"
class="btn btn-secondary px-4"><?php echo e(trans('labels.view_all')); ?>
<i
class="fa-regular fa-arrow-<?php echo e(session()->get('direction') == '2' ? 'left' : 'right'); ?>"></i></a>
</div>
</div>
<div class="blog-slider owl-carousel owl-theme">
<?php $__currentLoopData = $getblogs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $bloglist): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="item m-2">
<div class="card card-hover rounded-4 overflow-hidden">
<a href="<?php echo e(URL::to('/blogs-' . $bloglist->slug)); ?>"><img
src="<?php echo e(helper::image_path($bloglist->image)); ?>" class="card-img-top"
alt="..."></a>
<div class="card-body px-3 pb-0">
<a href="<?php echo e(URL::to('/blogs-' . $bloglist->slug)); ?>"
class="dark_color card-title fw-bold h5">
<?php echo e($bloglist->title); ?>
</a>
<p class="fs-7 text-muted m-0"><?php echo e(Str::limit($bloglist->description, 80)); ?>
</p>
</div>
<div class="card-footer border-0 bg-transparent px-3">
<div class="d-flex justify-content-between align-items-center">
<div class="col-auto mb-0 blog-date">
<span
class="text-muted fw-600"><?php echo e(helper::date_format($bloglist->created_at)); ?></span>
</div>
<a href="<?php echo e(URL::to('/blogs-' . $bloglist->slug)); ?>"
class="blog-color-text border-0 fw-500 fs-7 <?php echo e(session()->get('direction') == '2' ? 'float-start' : 'float-end'); ?>"><?php echo e(trans('labels.read_more')); ?>
<i
class="fa-regular fa-arrow-<?php echo e(session()->get('direction') == '2' ? 'left' : 'right'); ?>"></i>
</a>
</div>
</div>
</div>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
</div>
</section>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SN70B9KQ9Z"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SN70B9KQ9Z');
</script>
<?php endif; ?>
<?php endif; ?>
<!-- Blog Section End Here -->
<?php $__env->stopSection(); ?>
<?php $__env->startSection('scripts'); ?>
<!-- JS For Promotional Banner Section 1 -->
<script>
$(document).ready(function() {
"use strict";
$("#news-slider ").owlCarousel({
rtl: "<?php echo e(session('direction') == 2); ?>" ? true : false,
loop: true,
responsiveClass: true,
responsive: {
0: {
items: 2,
nav: false,
dots: false,
arrow: true,
margin: 10,
loop: false,
// rewind: true
},
400: {
items: 2,
nav: false,
dots: false,
arrow: true,
margin: 10,
loop: false,
// rewind: true
},
600: {
items: 2,
nav: false,
dots: false,
arrow: true,
margin: 10,
loop: false,
// rewind: true
},
800: {
items: 2,
nav: false,
dots: false,
arrow: true,
margin: 10,
loop: false,
// rewind: true
},
1000: {
items: 3,
nav: false,
dots: false,
arrow: true,
margin: 10,
loop: false,
// rewind: true
},
1200: {
items: 3,
nav: false,
dots: false,
arrow: true,
margin: 10,
loop: false,
// rewind: true
}
}
});
$("#category").owlCarousel({
rtl: "<?php echo e(session('direction') == 2); ?>" ? true : false,
loop: false,
navText: [
"<i class='fa-regular fa-arrow-<?php echo e(session()->get('direction') == '2' ? 'right' : 'left'); ?>'></i>",
"<i class='fa-regular fa-arrow-<?php echo e(session()->get('direction') == '2' ? 'left' : 'right'); ?>'></i>"
],
responsiveClass: true,
dots: false,
margin: 20,
responsive: {
0: {
items: 2,
nav: false,
margin: 10,
},
400: {
items: 3,
nav: false,
margin: 15,
},
600: {
items: 4,
nav: true,
},
800: {
items: 5,
nav: true,
},
1000: {
items: 6,
nav: true,
},
}
});
$("#bannersection2").owlCarousel({
rtl: "<?php echo e(session('direction') == 2); ?>" ? true : false,
navText: [
"<i class='fa-regular fa-arrow-<?php echo e(session()->get('direction') == '2' ? 'right' : 'left'); ?>'></i>",
"<i class='fa-regular fa-arrow-<?php echo e(session()->get('direction') == '2' ? 'left' : 'right'); ?>'></i>"
],
loop: true,
dots: false,
autoplay: true,
autoplayTimeout: 6000,
autoplaySpeed: 3000,
responsiveClass: true,
responsive: {
0: {
items: 2,
nav: false,
margin: 5,
},
576: {
items: 3,
nav: false,
margin: 10,
},
1200: {
items: 3,
nav: false,
margin: 10,
}
}
});
$('.testimonial-1').owlCarousel({
rtl: "<?php echo e(session('direction') == 2); ?>" ? true : false,
loop: true,
margin: 20,
nav: false,
dots: true,
autoplay: true,
autoplayTimeout: 5000,
autoplaySpeed: 3000,
responsive: {
0: {
items: 1,
nav: false,
},
600: {
items: 2
},
1000: {
items: 3
}
}
});
$('.blog-slider').owlCarousel({
rtl: "<?php echo e(session('direction') == 2); ?>" ? true : false,
loop: true,
margin: 10,
nav: false,
autoplay: true,
autoplayTimeout: 4000,
autoplaySpeed: 3000,
dots: false,
responsive: {
0: {
items: 1,
margin: 5,
nav: false,
},
576: {
items: 2,
margin: 5,
},
769: {
items: 3,
margin: 5,
},
1025: {
items: 4,
margin: 5,
}
}
});
$('.footer-fiechar-slider').owlCarousel({
loop: false,
margin: 10,
nav: false,
rtl: "<?php echo e(session('direction') == 2); ?>" ? true : false,
autoplay: true,
autoplayTimeout: 4000,
autoplaySpeed: 3000,
dots: true,
responsive: {
0: {
items: 1
},
600: {
items: 1
},
768: {
items: 2
},
991: {
items: 2
}
}
});
$('.offer-slider').owlCarousel({
rtl: true,
loop: true,
margin: 15,
nav: false,
dots: false,
center: true,
autoplay: true,
slideTransition: 'linear',
autoplayTimeout: 4000,
autoplaySpeed: 4000,
responsive: {
0: {
items: 1,
margin: 25,
nav: false,
},
600: {
items: 2,
nav: false,
},
1024: {
items: 3
},
1260: {
items: 4
}
}
})
});
// PWA js
$(".mobile-menu-active li").click(function() {
$(".mobile-menu-active li a").removeClass("active").eq($(this).index()).addClass("active");
});
// boostrap tooltip js
var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'))
var tooltipList = tooltipTriggerList.map(function(tooltipTriggerEl) {
return new bootstrap.Tooltip(tooltipTriggerEl)
})
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('web.layout.default', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /www/wwwroot/koreanshop.lk/resources/views/web/home1/index.blade.php ENDPATH**/ ?>