Viewing: c5603fbdf179552cf253f3e2d9271ff8b0d4480e.php
<?php $__env->startSection('title',translate('Shop Page')); ?> <?php $__env->startPush('css_or_js'); ?> <?php if($shop['id'] != 0): ?> <meta property="og:image" content="<?php echo e(asset('storage/app/public/shop')); ?>/<?php echo e($shop->image); ?>"/> <meta property="og:title" content="<?php echo e($shop->name); ?> "/> <meta property="og:url" content="<?php echo e(route('shopView',[$shop['id']])); ?>"> <?php else: ?> <meta property="og:image" content="<?php echo e(asset('storage/app/public/company')); ?>/<?php echo e($web_config['fav_icon']->value); ?>"/> <meta property="og:title" content="<?php echo e($shop['name']); ?> "/> <meta property="og:url" content="<?php echo e(route('shopView',[$shop['id']])); ?>"> <?php endif; ?> <meta property="og:description" content="<?php echo substr($web_config['about']->value,0,100); ?>"> <?php if($shop['id'] != 0): ?> <meta property="twitter:card" content="<?php echo e(asset('storage/app/public/shop')); ?>/<?php echo e($shop->image); ?>"/> <meta property="twitter:title" content="<?php echo e(route('shopView',[$shop['id']])); ?>"/> <meta property="twitter:url" content="<?php echo e(route('shopView',[$shop['id']])); ?>"> <?php else: ?> <meta property="twitter:card" content="<?php echo e(asset('storage/app/public/company')); ?>/<?php echo e($web_config['fav_icon']->value); ?>"/> <meta property="twitter:title" content="<?php echo e(route('shopView',[$shop['id']])); ?>"/> <meta property="twitter:url" content="<?php echo e(route('shopView',[$shop['id']])); ?>"> <?php endif; ?> <meta property="twitter:description" content="<?php echo substr($web_config['about']->value,0,100); ?>"> <?php $__env->stopPush(); ?> <?php $__env->startSection('content'); ?> <!-- Main Content --> <main class="main-content d-flex flex-column gap-3 py-3"> <div class="container"> <div class="rounded ov-hidden mb-3"> <?php if($shop['id'] != 0): ?> <div class="store-banner dark-support bg-badge overflow-hidden" data-bg-img=""> <img class="w-100" src="<?php echo e(asset('storage/app/public/shop/banner')); ?>/<?php echo e($shop->banner); ?>" onerror="this.src='<?php echo e(theme_asset('assets/img/image-place-holder.png')); ?>'" alt=""> </div> <?php else: ?> <?php ($banner=\App\CPU\Helpers::get_business_settings('shop_banner')); ?> <div class="store-banner dark-support bg-badge overflow-hidden" data-bg-img=""> <img class="w-100" src="<?php echo e(asset("storage/app/public/shop")); ?>/<?php echo e($banner??""); ?>" onerror="this.src='<?php echo e(theme_asset('assets/img/image-place-holder.png')); ?>'" alt=""> </div> <?php endif; ?> <div class="bg-primary-light p-3"> <div class="d-flex gap-4 flex-wrap"> <?php if($shop['id'] != 0): ?> <div class="media gap-3"> <div class="avatar rounded store-avatar"> <div class="position-relative"> <img src="<?php echo e(asset('storage/app/public/shop')); ?>/<?php echo e($shop->image); ?>" onerror="this.src='<?php echo e(theme_asset('assets/img/image-place-holder.png')); ?>'" class="dark-support rounded img-fit" alt=""> <?php if($seller_temporary_close || $inhouse_temporary_close): ?> <span class="temporary-closed position-absolute"> <span><?php echo e(translate('closed_now')); ?></span> </span> <?php elseif(($seller_id==0 && $inhouse_vacation_status && $current_date >= $inhouse_vacation_start_date && $current_date <= $inhouse_vacation_end_date) || $seller_id!=0 && $seller_vacation_status && $current_date >= $seller_vacation_start_date && $current_date <= $seller_vacation_end_date): ?> <span class="temporary-closed position-absolute"> <span><?php echo e(translate('closed_now')); ?></span> </span> <?php endif; ?> </div> </div> <div class="media-body d-flex flex-column gap-2"> <h4><?php echo e($shop->name); ?></h4> <div class="d-flex gap-2 align-items-center"> <span class="star-rating text-gold fs-12"> <?php for($i = 1; $i <= 5; $i++): ?> <?php if($i <= $avg_rating): ?> <i class="bi bi-star-fill"></i> <?php elseif($avg_rating != 0 && $i <= (int)$avg_rating + 1 && $avg_rating >= ((int)$avg_rating+.30)): ?> <i class="bi bi-star-half"></i> <?php else: ?> <i class="bi bi-star"></i> <?php endif; ?> <?php endfor; ?> </span> <span class="text-muted fw-semibold">(<?php echo e(round($avg_rating,1)); ?>)</span> </div> <h6><span class="follower_count"><?php echo e($followers); ?></span> <?php echo e(translate('Followers')); ?></h6> <ul class="list-unstyled list-inline-dot fs-12"> <li><?php echo e($total_review); ?> <?php echo e(translate('Reviews')); ?> </li> <li><?php echo e($total_order); ?> <?php echo e(translate('Orders')); ?> </li> </ul> </div> </div> <?php else: ?> <div class="media gap-3"> <div class="avatar rounded store-avatar"> <div class="position-relative"> <img src="<?php echo e(asset('storage/app/public/company')); ?>/<?php echo e($web_config['fav_icon']->value); ?>" onerror="this.src='<?php echo e(theme_asset('assets/img/image-place-holder.png')); ?>'" class="dark-support rounded img-fit" alt=""> <?php if($seller_temporary_close || $inhouse_temporary_close): ?> <span class="temporary-closed position-absolute"> <span><?php echo e(translate('closed_now')); ?></span> </span> <?php elseif(($seller_id==0 && $inhouse_vacation_status && $current_date >= $inhouse_vacation_start_date && $current_date <= $inhouse_vacation_end_date) || $seller_id!=0 && $seller_vacation_status && $current_date >= $seller_vacation_start_date && $current_date <= $seller_vacation_end_date): ?> <span class="temporary-closed position-absolute"> <span><?php echo e(translate('closed_now')); ?></span> </span> <?php endif; ?> </div> </div> <div class="media-body d-flex flex-column gap-2"> <h4><?php echo e($web_config['name']->value); ?></h4> <div class="d-flex gap-2 align-items-center"> <span class="star-rating text-gold fs-12"> <?php for($i = 1; $i <= 5; $i++): ?> <?php if($i <= $avg_rating): ?> <i class="bi bi-star-fill"></i> <?php elseif($avg_rating != 0 && $i <= (int)$avg_rating + 1 && $avg_rating >= ((int)$avg_rating+.30)): ?> <i class="bi bi-star-half"></i> <?php else: ?> <i class="bi bi-star"></i> <?php endif; ?> <?php endfor; ?> </span> <span class="text-muted fw-semibold">(<?php echo e(round($avg_rating,1)); ?>)</span> </div> <h6><span class="follower_count"><?php echo e($followers); ?></span> <?php echo e(translate('Followers')); ?></h6> <ul class="list-unstyled list-inline-dot fs-12"> <li><?php echo e($total_review); ?> <?php echo e(translate('Reviews')); ?> </li> <li><?php echo e($total_order); ?> <?php echo e(translate('Orders')); ?> </li> </ul> </div> </div> <?php endif; ?> <div class="d-flex gap-3 flex-wrap flex-grow-1"> <div class="card flex-grow-1"> <div class="card-body grid-center"> <div class="text-center"> <h2 class="fs-28 text-primary fw-extra-bold mb-2"><?php echo e(round(($avg_rating*100)/5)); ?>%</h2> <p class="text-muted"><?php echo e(translate("Positive_Review")); ?></p> </div> </div> </div> <div class="card flex-grow-1"> <div class="card-body grid-center"> <div class="text-center"> <h2 class="fs-28 text-primary fw-extra-bold mb-2"><?php echo e($products_for_review); ?></h2> <p class="text-muted"><?php echo e(translate('Products')); ?></p> </div> </div> </div> </div> <div class="d-flex flex-wrap flex-lg-column flex-lg-down-grow-1 justify-content-center gap-3"> <?php if($seller_id!=0): ?> <?php if(auth('customer')->check()): ?> <button class="btn btn-primary flex-lg-down-grow-1 fs-16" data-bs-toggle="modal" data-bs-target="#contact_sellerModal"> <i class="bi bi-chat-square-fill"></i> <?php echo e(translate('Chat_with_Seller')); ?> </button> <?php echo $__env->make('theme-views.layouts.partials.modal._chat-with-seller',['seller_id'=>$seller_id,'shop_id'=>$shop['id']], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php else: ?> <button class="btn btn-primary flex-lg-down-grow-1 fs-16" data-bs-toggle="modal" data-bs-target="#loginModal"> <i class="bi bi-chat-square-fill"></i> <?php echo e(translate('Chat_with_Seller')); ?> </button> <?php endif; ?> <?php endif; ?> <?php if(auth('customer')->id() == ''): ?> <button type="button" class="btn btn-outline-primary flex-lg-down-grow-1 fs-16" data-bs-toggle="modal" data-bs-target="#loginModal"><i class="bi bi-plus-lg"></i> <?php echo e(translate('follow')); ?></button> <?php else: ?> <button type="button" class="btn btn-outline-primary flex-lg-down-grow-1 fs-16 follow_button" data-status="<?php echo e($follow_status); ?>" data-titletext="<?php echo e(translate('Are_you_sure')); ?>?" data-titletext2="<?php echo e(translate('Want_to_unfollow_this_shop')); ?>!" onclick="shopFollowAction('<?php echo e($shop['id']); ?>')"> <?php echo e(($follow_status == 0?translate('Follow'):translate('Unfollow'))); ?></button> <?php endif; ?> </div> </div> </div> </div> <?php if($shop['id'] != 0 && $shop->bottom_banner): ?> <div class=""> <img src="<?php echo e(asset('storage/app/public/shop/banner')); ?>/<?php echo e($shop->bottom_banner); ?>" class="dark-support rounded img-fit" onerror="this.src='<?php echo e(theme_asset('assets/img/image-place-holder-4:1.png')); ?>'" alt=""> </div> <?php elseif($shop['id'] == 0): ?> <?php ($bottom_banner=\App\CPU\Helpers::get_business_settings('bottom_banner')); ?> <?php if($bottom_banner): ?> <div class=""> <img src="<?php echo e(asset('storage/app/public/shop')); ?>/<?php echo e($bottom_banner ?? ""); ?>" class="dark-support rounded img-fit" onerror="this.src='<?php echo e(theme_asset('assets/img/image-place-holder-4:1.png')); ?>'" alt=""> </div> <?php endif; ?> <?php endif; ?> </div> <!-- Featured Products --> <?php if(count($featured_products) > 0): ?> <section class="bg-primary-light"> <div class="container"> <div class=""> <div class="py-4"> <div class="d-flex flex-wrap justify-content-between gap-3 mb-3 mb-sm-4"> <h2><?php echo e(translate('Featured_Products')); ?></h2> <div class="swiper-nav d-flex gap-2 align-items-center"> <div class="swiper-button-prev top-rated-nav-prev position-static rounded-10"></div> <div class="swiper-button-next top-rated-nav-next position-static rounded-10"></div> </div> </div> <?php if(count($featured_products) > 0): ?> <div class="swiper-container"> <!-- Swiper --> <div class="position-relative"> <div class="swiper" data-swiper-loop="false" data-swiper-margin="20" data-swiper-autoplay="true" data-swiper-pagination-el="null" data-swiper-navigation-next=".top-rated-nav-next" data-swiper-navigation-prev=".top-rated-nav-prev" data-swiper-breakpoints='{"0": {"slidesPerView": "1"}, "320": {"slidesPerView": "2"}, "992": {"slidesPerView": "3"}, "1200": {"slidesPerView": "4"}, "1400": {"slidesPerView": "5"}}'> <div class="swiper-wrapper"> <?php $__currentLoopData = $featured_products; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $product): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="swiper-slide mx-w300"> <!-- Single Product --> <?php echo $__env->make('theme-views.partials._product-large-card', ['product'=>$product], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> </div> </div> <?php else: ?> <div> <?php echo e(translate('No_Featured_Product_Found')); ?>. </div> <?php endif; ?> </div> </div> </div> </section> <?php endif; ?> <!-- Product --> <section> <div class="container"> <div class="card mb-3"> <div class="card-body"> <div class="d-flex flex-wrap gap-3 align-items-center justify-content-between"> <div class=""> <div class="d-flex gap-3 align-items-center"> <h3 class="mb-1"><?php echo e(translate('Search_Product')); ?></h3> <a href="javascript:" class="text-primary text-decoration-underline fw-semibold"><?php echo e($products->count()); ?> <?php echo e(translate('Item')); ?></a> </div> </div> <div class=""> <div class="d-flex flex-wrap flex-lg-nowrap gap-2"> <div class="search-box"> <form method="get" action="<?php echo e(route('shopView',['id'=>$seller_id])); ?>"> <div class="d-flex"> <div class="select-wrap border d-flex align-items-center"> <input type="search" class="form-control border-0 mx-w300 h-auto" name="product_name" value="<?php echo e(request('product_name')); ?>" placeholder="<?php echo e(translate('Search_for_items')); ?> ..."> </div> <button type="submit" class="btn btn-primary"> <i class="bi bi-search"></i> </button> </div> </form> </div> <div class="border rounded custom-ps-3 py-2 d-flex align-items-center"> <div class="d-flex gap-2"> <div class="flex-middle gap-2"> <i class="bi bi-sort-up-alt"></i> <span class="d-none d-sm-inline-block"><?php echo e(translate('Sort_by')); ?> :</span> </div> <div class="dropdown product_view_sort_by"> <button type="button" class="border-0 bg-transparent dropdown-toggle text-dark p-0 custom-pe-3" data-bs-toggle="dropdown" aria-expanded="false"> <?php echo e(translate('default')); ?> </button> <ul class="dropdown-menu dropdown-menu-end" id="sort_by_list"> <li class="sort_by-latest selected" data-value="latest"> <a class="d-flex" href="javascript:" onclick="filter('latest','<?php echo e(translate('default')); ?>')"> <?php echo e(translate('default')); ?> </a> </li> <li class="sort_by-high-low" data-value="high-low"> <a class="d-flex" href="javascript:" onclick="filter('high-low','<?php echo e(translate('High_to_Low_Price')); ?>')"> <?php echo e(translate('High_to_Low_Price')); ?> </a> </li> <li class="sort_by-low-high" data-value="low-high"> <a class="d-flex" href="javascript:" onclick="filter('low-high','<?php echo e(translate('Low_to_High_Price')); ?>')"> <?php echo e(translate('Low_to_High_Price')); ?> </a> </li> <li class="sort_by-a-z" data-value="a-z"> <a class="d-flex" href="javascript:" onclick="filter('a-z','<?php echo e(translate('A_to_Z_Order')); ?>')"> <?php echo e(translate('A_to_Z_Order')); ?> </a> </li> <li class="sort_by-z-a" data-value="z-a"> <a class="d-flex" href="javascript:" onclick="filter('z-a','<?php echo e(translate('Z_to_A_Order')); ?>')"> <?php echo e(translate('Z_to_A_Order')); ?> </a> </li> </ul> </div> </div> </div> <div class="border rounded custom-ps-3 py-2 d-flex align-items-center gap-2"> <div class="d-flex gap-2"> <div class="flex-middle gap-2"> <i class="bi bi-sort-up-alt"></i> <span class="d-none d-sm-inline-block"><?php echo e(translate('Show_Product')); ?> : </span> </div> <div class="dropdown"> <button type="button" class="border-0 bg-transparent dropdown-toggle p-0 custom-pe-3" data-bs-toggle="dropdown" aria-expanded="false"> <?php echo e($data['data_from']=="best-selling"||$data['data_from']=="top-rated"||$data['data_from']=="featured_deal"||$data['data_from']=="latest"||$data['data_from']=="most-favorite"? str_replace(['-', '_', '/'], ' ', translate($data['data_from'])):translate('Choose Option')); ?> </button> <ul class="dropdown-menu dropdown-menu-end"> <li class="<?php echo e($data['data_from']=='latest'? 'selected':''); ?>"> <a class="d-flex" href="<?php echo e(route('shopView',['id'=> $data['id'],'data_from'=>'latest','page'=>1])); ?>"> <?php echo e(translate('Latest_Products')); ?> </a> </li> <li class="<?php echo e($data['data_from']=='best-selling'? 'selected':''); ?>"> <a class="d-flex" href="<?php echo e(route('shopView',['id'=> $data['id'],'data_from'=>'best-selling','page'=>1])); ?>"> <?php echo e(translate('Best_Selling')); ?> </a> </li> <li class="<?php echo e($data['data_from']=='top-rated'? 'selected':''); ?>"> <a class="d-flex" href="<?php echo e(route('shopView',['id'=> $data['id'],'data_from'=>'top-rated','page'=>1])); ?>"> <?php echo e(translate('Top_Rated')); ?> </a> </li> <li class="<?php echo e($data['data_from']=='most-favorite'? 'selected':''); ?>"> <a class="d-flex" href="<?php echo e(route('shopView',['id'=> $data['id'],'data_from'=>'most-favorite','page'=>1])); ?>"> <?php echo e(translate('Most_Favorite')); ?> </a> </li> <?php if($web_config['featured_deals']): ?> <li class="<?php echo e($data['data_from']=='featured_deal'? 'selected':''); ?>"> <a class="d-flex" href="<?php echo e(route('shopView',['id'=> $data['id'],'data_from'=>'featured_deal','page'=>1])); ?>"> <?php echo e(translate('Featured_Deal')); ?> </a> </li> <?php endif; ?> </ul> </div> </div> </div> </div> </div> </div> </div> </div> <div class="flexible-grid lg-down-1 gap-3" style="--width: 16rem"> <div class="card filter-toggle-aside"> <div class="d-flex d-lg-none pb-0 p-3 justify-content-end"> <button class="filter-aside-close border-0 bg-transparent"> <i class="bi bi-x-lg"></i> </button> </div> <div class="card-body d-flex flex-column gap-4"> <!-- Categories --> <div> <h6 class="mb-3"><?php echo e(translate('Categories')); ?></h6> <div class="products_aside_categories"> <ul class="common-nav flex-column nav custom-scrollbar flex-nowrap custom_common_nav"> <?php $__currentLoopData = $categories; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $category): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li> <div class="d-flex justify-content-between"> <a href="<?php echo e(route('shopView',['id'=> $seller_id,'category_id'=>$category['id']])); ?>"><?php echo e($category['name']); ?></a> <?php if($category->childes->count() > 0): ?> <span> <i class="bi bi-chevron-right"></i> </span> <?php endif; ?> </div> <!-- Sub Menu --> <?php if($category->childes->count() > 0): ?> <ul class="sub_menu"> <?php $__currentLoopData = $category->childes; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $child): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li> <div class="d-flex justify-content-between"> <a href="<?php echo e(route('shopView',['id'=> $seller_id,'category_id'=>$child['id']])); ?>"><?php echo e($child['name']); ?></a> <?php if($child->childes->count() > 0): ?> <span> <i class="bi bi-chevron-right"></i> </span> <?php endif; ?> </div> <?php if($child->childes->count() > 0): ?> <ul class="sub_menu"> <?php $__currentLoopData = $child->childes; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $ch): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li> <label class="custom-checkbox"> <a href="<?php echo e(route('shopView',['id'=> $seller_id,'category_id'=>$ch['id']])); ?>"><?php echo e($ch['name']); ?></a> </label> </li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> <?php endif; ?> </li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> <?php endif; ?> </li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> </div> <?php if(count($categories) > 10): ?> <div class="d-flex justify-content-center"> <button class="btn-link text-primary btn_products_aside_categories"><?php echo e(translate('More_Categories')); ?>...</button> </div> <?php endif; ?> </div> <?php if($web_config['brand_setting']): ?> <!-- Brands --> <div> <h6 class="mb-3"><?php echo e(translate('Brands')); ?></h6> <div class="products_aside_brands"> <ul class="common-nav nav flex-column pe-2"> <?php $__currentLoopData = $brands; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $brand): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li> <div class="flex-between-gap-3 align-items-center"> <label class="custom-checkbox"> <a href="<?php echo e(route('shopView',['id'=>$seller_id,'brand_id'=>$brand->id])); ?>"><?php echo e($brand['name']); ?></a> </label> <span class="badge bg-badge rounded-pill text-dark"> <?php echo e($brand->count); ?> </span> </div> </li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> </div> <?php if(count($brands) > 10): ?> <div class="d-flex justify-content-center"> <button class="btn-link text-primary btn_products_aside_brands"><?php echo e(translate('More_Brands')); ?>...</button> </div> <?php endif; ?> </div> <?php endif; ?> <!-- Ratings --> <div id="ajax-review_partials"> <?php echo $__env->make('theme-views.partials._products_review_partials', ['ratings'=>$ratings], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> </div> <!-- Price --> <div> <h6 class="mb-3"><?php echo e(translate('Price')); ?></h6> <div class="d-flex align-items-end gap-2"> <div class="form-group"> <label for="min_price" class="mb-1"><?php echo e(translate('Min')); ?></label> <input type="number" id="min_price" class="form-control form-control--sm" placeholder="$0"> </div> <div class="mb-2">-</div> <div class="form-group"> <label for="max_price" class="mb-1"><?php echo e(translate('Max')); ?></label> <input type="number" id="max_price" class="form-control form-control--sm" placeholder="$1,000"> </div> <button class="btn btn-primary py-1 px-2 fs-13" onclick="sortByfilterBy()"><i class="bi bi-chevron-right"></i></button> </div> <section class="range-slider"> <span class="full-range"></span> <span class="incl-range"></span> <input name="rangeOne" value="0" min="0" max="10000" step="1" type="range" id="price_rangeMin"> <input name="rangeTwo" value="5000" min="0" max="10000" step="1" type="range" id="price_rangeMax"> </section> </div> </div> </div> <div class=""> <div class="d-flex flex-wrap flex-lg-nowrap align-items-start justify-content-between gap-3 mb-2"> <!-- <div class="flex-middle gap-3"></div> --> <div class="d-flex flex-wrap flex-md-nowrap align-items-center justify-content-between gap-2 gap-md-3 flex-grow-1"> <button class="toggle-filter square-btn btn btn-outline-primary rounded d-lg-none"> <i class="bi bi-funnel"></i> </button> <ul class="product-view-option option-select-btn gap-3"> <li> <label> <input type="radio" name="product_view" value="grid-view" hidden="" <?php echo e(!session()->has('product_view_style')?'checked':''); ?> <?php echo e((session()->get('product_view_style') == 'grid-view'?'checked':'')); ?> id="grid-view"> <span class="py-2 d-flex align-items-center gap-2"><i class="bi bi-grid-fill"></i> <?php echo e(translate('Grid_View')); ?></span> </label> </li> <li> <label> <input type="radio" name="product_view" value="list-view" hidden="" <?php echo e((session()->get('product_view_style') == 'list-view'?'checked':'')); ?> id="list-view"> <span class="py-2 d-flex align-items-center gap-2"><i class="bi bi-list-ul"></i> <?php echo e(translate('List_View')); ?></span> </label> </li> </ul> </div> </div> <?php ($decimal_point_settings = \App\CPU\Helpers::get_business_settings('decimal_point_settings')); ?> <div id="ajax-products-view"> <?php echo $__env->make('theme-views.product._ajax-products',['products'=>$products,'decimal_point_settings'=>$decimal_point_settings], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> </div> </div> </div> </div> </section> </main> <!-- End Main Content --> <span id="filter_url" data-url="<?php echo e(url('/')); ?>/shopView/<?php echo e($shop['id']); ?>"></span> <span id="product_view_style_url" data-url="<?php echo e(route('product_view_style')); ?>"></span> <span id="shop_follow_url" data-url="<?php echo e(route('shop_follow')); ?>"></span> <input type="hidden" value="<?php echo e($data['data_from']); ?>" id="data_from"> <input type="hidden" value="<?php echo e($data['id']); ?>" id="data_id"> <input type="hidden" value="<?php echo e($data['name']); ?>" id="data_name"> <input type="hidden" value="<?php echo e($data['min_price']); ?>" id="data_min_price"> <input type="hidden" value="<?php echo e($data['max_price']); ?>" id="data_max_price"> <!-- End Main Content --> <?php $__env->stopSection(); ?> <?php echo $__env->make('theme-views.layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/u728836105/domains/sakashappliances.com/public_html/resources/themes/theme_aster/theme-views/seller-views/shopview.blade.php ENDPATH**/ ?>
Return