Viewing file: theme1.blade.php (72.67 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('master.front') @section('meta') <meta name="keywords" content="{{ $setting->meta_keywords }}"> <meta name="description" content="{{ $setting->meta_description }}"> @endsection
@section('content')
@php function renderStarRating($rating, $maxRating = 5) { $fullStar = "<i class = 'far fa-star filled'></i>"; $halfStar = "<i class = 'far fa-star-half filled'></i>"; $emptyStar = "<i class = 'far fa-star'></i>"; $rating = $rating <= $maxRating ? $rating : $maxRating;
$fullStarCount = (int) $rating; $halfStarCount = ceil($rating) - $fullStarCount; $emptyStarCount = $maxRating - $fullStarCount - $halfStarCount;
$html = str_repeat($fullStar, $fullStarCount); $html .= str_repeat($halfStar, $halfStarCount); $html .= str_repeat($emptyStar, $emptyStarCount); $html = $html; return $html; } @endphp
<section class="carouselExampleControls-sec"> <div class=""> <div id="swiper-container" class="swiper-container overflow-hidden"> <div class="swiper-wrapper">
@foreach (DB::table('categories')->whereStatus(1)->get() as $category) <div class="swiper-slide"> <div class="hover-effect overflow-hidden position-relative h-100"> <div class="swiper-slide-image h-100"> <img src="{{ asset('assets/images/' . $category->banner_photo) }}" alt=""> </div> <div class="swiper-slide-image-text container"> <ul class="p-0"> @foreach (DB::table('subcategories')->where('category_id',$category->id)->whereStatus(1)->get() as $chield_category) <li> <a href="{{ route('front.all.category',$chield_category->category_id) }}" class=" btn-link-shop-hover2">{{ $chield_category->name }}</a> </li> @endforeach </ul> <h2 class="text-uppercase mb-0 mt-4">{{ $category->name }}</h2> <a href="{{ route('front.all.category',$category->id) }}" class="btn-link-shop text-uppercase fw-medium"> Browse All </a> </div> </div> </div> @endforeach </div> <div class="swiper-pagination"></div> </div> </div> </section>
<div class="mb-4 mb-xl-5 pt-1 pb-5"></div> <section class="container"> <h1 class="section-titles text-uppercase text-center mb-1 mb-md-3 pb-xl-2 mb-xl-4"> Trending <span>Products</span> </h1> <div class="row justify-content-center"> @foreach ($products->orderBy('id', 'DESC')->take(20)->get() as $item) @if ($item->is_type === 'top') @php $hasAttributes = $item->attributes->isNotEmpty(); @endphp <input type="hidden" id="demo_price" value="{{PriceHelper::setConvertPrice($item->discount_price)}}"> <div class="col-lg-3 col-md-4 col-6 p-0"> <div class="product-card-wrapper-item overflow-hidden"> <div class="product-card-wrapper-item-content position-relative mb-3"> <div class="product-changeimg"> <a href="{{ route('front.product.solo', $item->slug) }}"> <img src="{{ asset('assets/images/' . $item->photo) }}" alt="" class="product-changeimg-first-img rotatetion-img2"> <img src="{{ asset('assets/images/' . $item->photo) }}" alt="" class="product-changeimg-two-img rotatetion-img"> </a> </div> <div class="product-changedate position-relative"> <p class="name-tilte">{{ $item->category->name }}</p> <h6 class="name-tilte-h"> <a href="{{ route('front.product.solo', $item->slug) }}"> {{ Str::limit($item->name, 35) }} </a> </h6> <div class="d-flex"> <p style="font-size: 1rem"> {{ PriceHelper::setPreviousPrice($item->discount_price) }} </p> </div> @php $sizes = []; $colors = []; @endphp @if ($item->attributes) @foreach ($item->attributes as $attribute) @php $filteredOptions = $attribute->options->where('stock', '!=', '0'); @endphp @foreach ($filteredOptions as $option) @php if ($attribute->name === 'Size') { $sizes[] = $option; } elseif ($attribute->name === 'Color') { $colors[] = $option; } @endphp @endforeach @endforeach @endif <div class="hover-product-content2 d-flex justify-content-around mt-3"> @if (Auth::user()) <a href="{{ route('front.product.solo', $item->slug) }}" class="btn-link-shop-hover2 mr-auto add_to_single_cart btn-for-lg" title="{{ __('To Cart') }}">Add To Cart</a> <a href="{{ route('front.product.solo', $item->slug) }}" class="btn-link-shop-hover2 mr-auto add_to_single_cart btn-eye" title="{{ __('To Cart') }}"><i class="fa fa-shopping-bag"></i></a> @else <a href="{{ route('user.login') }}" class="btn-link-shop-hover2 mr-auto btn-for-lg">Add To Cart</a> <a href="{{ route('user.login') }}" class="btn-link-shop-hover2 mr-auto btn-eye"> <i class="fa fa-shopping-bag"></i> </a> @endif <div class=""> {{-- <input type="hidden" id="demo_price" value="{{PriceHelper::setConvertPrice($item->discount_price)}}"> --}} <input type="hidden" value="{{PriceHelper::setCurrencySign()}}" id="set_currency"> <input type="hidden" value="{{PriceHelper::setCurrencyValue()}}" id="set_currency_val"> <input type="hidden" value="{{$setting->currency_direction}}" id="currency_direction"> @php $productRatings = $item->reviews; $numberOfRatings = count($productRatings); $totalRatings = $productRatings->sum('rating'); $averageRating = $numberOfRatings > 0 ? round($totalRatings / $numberOfRatings, 2) : 0;
$fullStars = floor($averageRating); $halfStar = ($averageRating - $fullStars) >= 0.5 ? 1 : 0; $emptyStars = 5 - ($fullStars + $halfStar);
$full_stars = str_repeat("<i class='fa fa-star review-stars'></i>", $fullStars); $half_stars = $halfStar ? "<i class='fa fa-star-half-alt review-stars'></i>" : ''; $empty_stars = str_repeat("<i class='far fa-star review-stars'></i>", $emptyStars);
$count = $productRatings->count();
// Format the review count (e.g., 1k, 1m, etc.) $formattedCount = $count >= 1_000_000_000_000 ? round($count / 1_000_000_000_000, 1) . 't' : ($count >= 1_000_000_000 ? round($count / 1_000_000_000, 1) . 'b' : ($count >= 1_000_000 ? round($count / 1_000_000, 1) . 'm' : ($count >= 1_000 ? round($count / 1_000, 1) . 'k' : $count))); @endphp <button type="button" id="show-product-des" class="btn btn-res" style="color: #767676;" data-name="{{ $item->name }}" dataitemreview="{{ $formattedCount }}" datafullstar="{{ $full_stars }}" datahalfstar="{{ $half_stars }}" dataemptystar="{{ $empty_stars }}" data-name="{{ $item->name }}" data-price="{{ $item->discount_price }}" data-id="{{ $item->id }}" data-details="{!! $item->sort_details !!}" data-galleries='@json($item->galleries)' data-sizes='@json($sizes)' data-colors='@json($colors)' data-skn="{{ $item->sku }}" data-tags="{{ $item->tags }}" datashowitemprice="{{PriceHelper::setPreviousPrice($item->discount_price)}}" data-category-name="{{ $item->category->name }}" dataitemtype="{{ $hasAttributes ? 'yes' : 'no'}}"> <i class="far fa-eye btn-eye"></i> </button> <a class="product-button product_compare compare-btn" href="javascript:;" data-target="{{route('fornt.compare.product',$item->id)}}" title="{{__('Compare')}}"><i class="icon-repeat icn-rpt-sm"></i></a>
@if (Auth::user()) <a href="#" class="btn btn-res whish-list-add" data-url="{{ route('user.wishlist.store') }}" data-token="{{ csrf_token() }}" data-product-id="{{ $item->id }}" style="color: #767676;"> <i class="far fa-heart btn-eye"></i> </a> @else <a href="{{ route('user.login') }}" class="btn btn-res" style="color: #767676;"> <i class="far fa-heart btn-eye"></i> </a> @endif </div> </div> </div> </div> </div> </div> @endif @endforeach </div> <div class="text-center mt-3"> <a href="{{ route('front.catalog') }}" class="btn-link-shop text-uppercase fw-medium">See All Products</a> </div> </section>
<div class="modal fade showed-product-des-modal p-0 " data-bs-backdrop="static" id="showed-product-des" tabindex="-1" role="dialog"> <div class="modal-dialog modal-dialog-itemModal2 m-0" role="document"> <div class="modal-content" style="border-radius: 0;"> <div class="modal-body"> <div class="row"> <div class="col-lg-6"> <div class="carouselExampleControls"> <div id="carouselExampleControls2" class="carousel carousel2 slide" data-bs-ride="carousel"> <div class="carousel-inner" id="carousel-item"> </div> <button type="button" class="carousel-control-prev carousel-control-prev2" data-bs-target="#carouselExampleControls2" data-bs-slide="prev"> <i class="far fa-angle-left carousel-control-icon"></i> </button> <button type="button" class="carousel-control-next carousel-control-prev3" data-bs-target="#carouselExampleControls2" data-bs-slide="next"> <i class="far fa-angle-right carousel-control-icon"></i> </button> </div> </div> </div> <div class="col-lg-6"> <div class="d-flex justify-content-end"> <button id="close-product-des" class="close close-product-des-modal close-product-des2">X</button> </div> <div class="solo-product"> <h1 class="pro-name"></h1> </div> <div id="solo-product-review"> </div> <div class="solo-product-price"> {{-- <span id="main_price" class="totalprice_solo" data-price="{{ $product->discount_price }}"> </span> --}} <span id="main_price" data-price="" class="totalprice_solo set_price_on_modal">
</span> </div> <div class="solo-product-des"> <p class="pro-des"></p> </div> <form action="" method="POST"> <div class="product-other-color"> <div id="product-other-swatch" class="product-other-swatch"> <label for="">Sizes</label> <div id="product-other-sizes-list" class="product-other-swatch-list"> </div> </div> <div id="product-other-swatch-color" class="product-other-swatch"> <label for="">Color</label> <div id="product-other-colors-list" class="product-other-swatch-list"> </div> </div> </div> <div class=" solo-product-addcart"> <div class="solo-product-addcart-qy"> <input id="qtyValue_1" type="number" value="1" class="qtyValue cart-amount qty-solo-product text-center quantity_section_item quantity_section_item3" name="quantity"> <div class="qty-reduce decreaseQty subclick">-</div> <div class="qty-add increaseQty addclick">+</div> </div> <div class=""> <input type="hidden" value="30" id="current_stock"> <input type="hidden" class="item_id_eye" id="item_id" value=""> @if(Auth::user()) <button type="button" id="add_to_cart" data-p-item-type="" class="add-to-cart-modal-close p-attr-type-add common-btn p-3"> ADD TO CART</button> {{-- <button type="button" id="add_to_cart" data-p-item-type="" class="close-product-des close-product-des-modal p-attr-type-add common-btn p-3"> ADD TO CART</button> --}} @else <a href="{{route('user.login')}}"> ADD TO CART</a> @endif </div> </div> </form> <div class="solo-product-links"> <a href="#" id="whish-list-add-eye" data-url="{{route('user.wishlist.store')}}" data-token="{{ csrf_token() }}" data-product-id="" class="a-link whish-list-add"><i class="far fa-heart mr-2"></i> Add to Wishlist</a> </div> <div class="solo-product-links-meta-info mb-0"> <div class="links-meta"> <label for="">SKU:</label> <span id="show-sku">N/A</span> </div> <div class="links-meta"> <label for="">Category:</label> <span id="show-catagory">Casual & Urban Wear, Jackets, Men</span> </div> <div class="links-meta"> <label for="">Tags:</label> <span id="show-tags"> biker, black, bomber, leather</span> </div> </div> </div> </div> </div> </div> </div> </div>
<div class="mb-4 mb-xl-5 pt-1 pb-5"></div> <section class="container"> <?php $homeCustomize = DB::table('home_cutomizes')->first(); $discover_now = json_decode($homeCustomize->discover_now); $cate_b_img = DB::table('categories')->where('id',$discover_now->discover_now_category_id)->whereStatus(1)->first(); ?> <div class="row justify-content-center m-0"> <div class="col-lg-5 col-md-6 "> <div class="position-relative mb-4 h-100"> <img src="{{ asset('assets/images/' . $cate_b_img->banner_photo) }}" alt="" class="w-100 h-100"> <div class="ads-open"> <h2 class="fs-40 fw-normal text-uppercase mb-0 font-courgette">{{ $discover_now->discover_now_title }}</h2> <p class="mb-4">{{ $discover_now->discover_now_sub_title }}</p> <a href="{{ route('front.all.category',$discover_now->discover_now_category_id) }}" class="btn btn-discover border-0 fs-base text-uppercase fw-medium"> Discover Now </a> </div> </div> </div> <div class="col-md-6 col-lg-7 mt-3"> <div class="row justify-content-around"> @foreach (DB::table('items')->where('category_id',$discover_now->discover_now_category_id)->whereStatus(1)->get()->take(6) as $cate_product) <div class="col-lg-4 col-md-6 col-6 res-p "> <div class=""> <div class="product-ads-card mb-2 mb-md-3"> <div class="product-changeimg"> <a href="{{ route('front.product.solo',$cate_product->slug) }}"> <img src="{{ asset('assets/images/' . $cate_product->photo) }}" alt="" class="product-changeimg-first-img"> </a> </div> <div class="mt-1"> <div class="position-relative"> <h6 class="name-tilte-h name-tilte-h2"> <a href="{{ route('front.product.solo',$cate_product->slug) }}">{{ Str::limit($cate_product->name, 30) }}</a> </h6> <div class="d-flex mt-2"> <p style="font-size: 1rem;">{{PriceHelper::setPreviousPrice($cate_product->discount_price)}}</p> </div> </div> </div> </div> </div> </div> @endforeach </div> </div> </div> </section>
<div class="mb-5 pb-4"></div> <section class="position-relative d-block"> <?php $homeCustomize = DB::table('home_cutomizes')->first(); $look_book = $homeCustomize && $homeCustomize->look_book ? json_decode($homeCustomize->look_book) : null; ?> @if ($look_book && isset($look_book->lookbook_img, $look_book->title, $look_book->lookbook_cate_id)) <img src="{{ asset('assets/images/' . $look_book->lookbook_img) }}" alt="" class="w-100 position-relative lookbook-image"> <div class="text-uppercase position-absolute text-center-position text-center lookbook-img "> <h1>{{ $look_book->title }}</h1> <a href="{{ route('front.all.category', $look_book->lookbook_cate_id) }}" class="btn btn-discover border-0 fs-base text-uppercase fw-medium"> Discover Now </a> </div> @else <p>{{ __('Look book data is not available.') }}</p> @endif </section>
<div class="mb-4 mb-xl-5 pt-1 pb-5"></div> <section class="container"> <div class="row m-0 justify-content-center"> <div class="col-lg-6"> <div class="position-relative py-4 carousel-width"> <div class="row m-0"> <div class="col-lg-7"> <div class="carousel-item-header-title text-uppercase text-center mb-1 mb-md-3 pb-xl-2 mb-xl-4"> <h1 class="fw-normal"> {{ $elements_style_title }} </h1> </div> <div class="carouselExampleControls"> <div id="carouselExampleControls3" class="carousel carousel2 slide" data-bs-ride="carousel"> <div class="carousel-inner"> @foreach ($elements_style_pro_id as $elements_style_pro) <div class="carousel-item {{ $loop->first ? 'active' : '' }}"> @if($elements_style_pro->photo) <a href="{{ route('front.product.solo',$elements_style_pro->slug) }}"> <img src="{{ asset('assets/images/'.$elements_style_pro->photo) }}" alt="" class="w-100 carousel-item-img2"> </a> @else <img src="data:image/jpeg;base64,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" alt="" class="w-100 carousel-item-img2"> @endif <div class="mt-3 position-relative carousel-item-header-des"> <p>{{ $elements_style_pro->category->name }}</p> <h6 class="mt-2 mb-2"> <a href="{{ route('front.product.solo',$elements_style_pro->slug) }}">{{ Str::limit($elements_style_pro->name, 35) }}</a></h6> <p>{{ PriceHelper::setPreviousPrice($elements_style_pro->discount_price) }}</p> </div> </div> @endforeach </div> <button type="button" class="carousel-control-prev carousel-control-prev2" data-bs-target="#carouselExampleControls3" data-bs-slide="prev"> <i class="far fa-angle-left carousel-control-icon"></i> </button> <button type="button" class="carousel-control-next carousel-control-prev3" data-bs-target="#carouselExampleControls3" data-bs-slide="next"> <i class="far fa-angle-right carousel-control-icon"></i> </button> </div> </div> </div> </div> </div> </div> <div class="col-lg-6"> <div class="position-relative h-100"> <img src="{{ asset('assets/images/'.$elements_style_category->banner_photo) }}" alt="" class="h-100 w-100"> <div class="text-uppercase best-product-title">{{ $elements_style_category->name }}</div> </div> </div> </div> </section>
<div class="mb-4 mb-xl-5 pt-1 pb-5"></div> <section class="mb-md-4 pb-md-4 mb-xl-5 container"> <div class="row m-0 justify-content-around"> @foreach ($services as $service) <div class="col-md-4 text-center mb-5 mb-md-0"> <div class="service-icon mb-3"> <img src="{{ asset('assets/images/'.$service->photo) }}" alt="Shipping" width="53" height="52"> </div> <h3 class="service-text text-uppercase">{{ $service->title }}</h3> <p class="service-text-des text-secondary">{{ $service->details }}</p> </div> @endforeach </div> </section>
{{-- @if ($setting->is_slider == 1) <div class="slider-area-wrapper"> <div class="container"> <div class="row"> <div class="col-lg-8"> <!-- Main Slider--> <div class="hero-slider"> <div class="hero-slider-main owl-carousel dots-inside" > @foreach ($sliders as $slider) <div class="item @if (DB::table('languages')->where('is_default',1)->first()->rtl == 1) d-flex justify-content-end @endif " style="background: url('{{ asset('assets/images/' . $slider->photo) }}')"> <div class="item-inner"> <div class="from-bottom"> @if ($slider->logo) <img class="d-inline-block brand-logo" src="{{ asset('assets/images/' . $slider->logo) }}" alt="logo"> @endif <div class="title text-body">{{ $slider->title }}</div> <div class="subtitle text-body">{{ $slider->details }}</div> </div> @if($slider->link != '#') <a class="btn btn-primary scale-up delay-1" href="{{ $slider->link }}"> <span>{{ __('Buy Now') }}</span> </a> @endif </div> </div> @endforeach </div> </div> </div>
@if (isset($hero_banner)) <div class="col-lg-4 d-none d-lg-block"> <a href="{{$hero_banner['url1']}}" class="sright-image"> <img src="{{asset('assets/images/'.$hero_banner['img1'])}}" alt=""> <div class="inner-content">
@if (isset($hero_banner['subtitle1'])) <p>{{$hero_banner['subtitle1']}}</p> @endif
@if (isset($hero_banner['title1'])) <h4>{{$hero_banner['title1']}}</h4> @endif </div> </a> <a href="{{$hero_banner['url2']}}" class="sright-image mb-0"> <img src="{{asset('assets/images/'.$hero_banner['img2'])}}" alt=""> <div class="inner-content"> @if (isset($hero_banner['subtitle2'])) <p>{{$hero_banner['subtitle2']}}</p> @endif @if (isset($hero_banner['title2'])) <h4>{{$hero_banner['title2']}}</h4> @endif </div> </a> </div> @endif
</div> </div> </div> @endif --}}
{{-- @if ($setting->is_service == 1) <section class="service-section"> <div class="container"> <div class="row"> @foreach ($services as $service) <div class="col-lg-3 col-sm-6 text-center mb-30"> <div class="single-service single-service2"> <img src="{{ asset('assets/images/'.$service->photo) }}" alt="Shipping"> <div class="content"> <h6 class="mb-2">{{ $service->title }}</h6> <p class="text-sm text-muted mb-0">{{ $service->details }}</p> </div> </div> </div> @endforeach </div> </div> </section> @endif --}}
{{-- @if ($setting->campaign_status == 1) <div class="deal-of-day-section mt-20"> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="section-title"> <h2 class="h3">{{ $setting->campaign_title }}</h2> <div class="right-area"> <div class="countdown countdown-alt" data-date-time="{{$setting->campaign_end_date}}"></div> <a class="right_link" href="{{route('front.campaign')}}">{{ __('View All') }} <i class="icon-chevron-right"></i></a>
</div> </div> </div> </div> <div class="row g-3">
<div class="col-lg-12"> <div class="popular-category-slider owl-carousel"> @foreach ($campaign_items as $compaign_item)
<div class="slider-item"> <div class="product-card"> <div class="product-thumb"> @if (!$compaign_item->item->is_stock()) <div class="product-badge bg-secondary border-default text-body ">{{__('out of stock')}}</div> @endif
@if($compaign_item->item->previous_price && $compaign_item->item->previous_price !=0) <div class="product-badge product-badge2 bg-info"> -{{PriceHelper::DiscountPercentage($compaign_item->item)}}</div> @endif <img class="lazy" data-src="{{asset('assets/images/'.$compaign_item->item->thumbnail)}}" alt="Product"> <div class="product-button-group"><a class="product-button wishlist_store" href="{{route('user.wishlist.store',$compaign_item->item->id)}}" title="{{__('Wishlist')}}"><i class="icon-heart"></i></a> <a data-target="{{route('fornt.compare.product',$compaign_item->item->id)}}" class="product-button product_compare" href="javascript:;" title="{{__('Compare')}}"><i class="icon-repeat"></i></a> @if ($compaign_item->item->is_stock()) <a class="product-button add_to_single_cart" data-target="{{ $compaign_item->item->id }}" href="javascript:;" title="{{__('To Cart')}}"><i class="icon-shopping-cart"></i> </a> @else <a class="product-button" href="{{route('front.product',$compaign_item->item->slug)}}" title="{{__('Details')}}"><i class="icon-arrow-right"></i></a> @endif </div> </div> <div class="product-card-body">
<div class="product-category"><a href="{{route('front.catalog').'?category='.$compaign_item->item->category->slug}}">{{$compaign_item->item->category->name}}</a></div> <h3 class="product-title"><a href="{{route('front.product',$compaign_item->item->slug)}}"> {{ Str::limit($compaign_item->item->name, 35) }} </a></h3> <div class="rating-stars"> {!! renderStarRating($compaign_item->item->reviews->avg('rating')) !!} </div> <h4 class="product-price"> @if ($compaign_item->item->previous_price != 0) <del>{{PriceHelper::setPreviousPrice($compaign_item->item->previous_price)}}</del> @endif
{{PriceHelper::grandCurrencyPrice($compaign_item->item)}} </h4>
</div>
</div> </div> @endforeach </div>
</div>
</div> </div> </div> @endif --}}
{{-- @if ($setting->is_three_c_b_first == 1) <div class="bannner-section mt-60"> <div class="container "> <div class="row gx-3"> <div class="col-md-4"> <a href="{{$banner_first['firsturl1']}}" class="genius-banner"> <img src="{{ asset('assets/images/'.$banner_first['img1']) }}" alt=""> <div class="inner-content"> @if (isset($banner_first['subtitle1'])) <p>{{$banner_first['subtitle1']}}</p> @endif @if (isset($banner_first['title1'])) <h4>{{$banner_first['title1']}}</h4> @endif </div> </a> </div> <div class="col-md-4"> <a href="{{$banner_first['firsturl2']}}" class="genius-banner"> <img src="{{ asset('assets/images/'.$banner_first['img2']) }}" alt=""> <div class="inner-content"> @if (isset($banner_first['subtitle2'])) <p>{{$banner_first['subtitle2']}}</p> @endif @if (isset($banner_first['title2'])) <h4>{{$banner_first['title2']}}</h4> @endif </div> </a> </div> <div class="col-md-4"> <a href="{{$banner_first['firsturl3']}}" class="genius-banner"> <img src="{{ asset('assets/images/'.$banner_first['img3']) }}" alt=""> <div class="inner-content"> @if (isset($banner_first['subtitle3'])) <p>{{$banner_first['subtitle3']}} </p> @endif @if (isset($banner_first['title3'])) <h4>{{$banner_first['title3']}}</h4> @endif </div> </a> </div> </div> </div> </div> @endif --}}
{{-- @if ($setting->is_popular_category == 1) <section class="newproduct-section popular-category-sec mt-50"> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="section-title"> <h2 class="h3">{{ $popular_category_title }}</h2> <div class="links"> @foreach ($popular_categories as $key => $popular_categorie) <a class="category_get {{$loop->first ? 'active' : ''}}" data-target="popular_category_view" data-href="{{route('front.popular.category',[$popular_categorie->slug,'popular_category','slider'])}}" href="javascript:;" class="{{$loop->first ? 'active' : ''}}">{{$popular_categorie->name}}</a> @endforeach </div> </div> </div> </div> <div class="popular_category_view d-none"> <img src="{{asset('assets/images/ajax_loader.gif')}}" alt=""> </div>
<div class="row" id="popular_category_view"> <div class="col-lg-12"> <div class="popular-category-slider owl-carousel"> @foreach ($popular_category_items as $popular_category_item) <div class="slider-item"> <div class="product-card"> <div class="product-thumb">
@if (!$popular_category_item->is_stock()) <div class="product-badge bg-secondary border-default text-body ">{{__('out of stock')}}</div> @endif @if($popular_category_item->previous_price && $popular_category_item->previous_price !=0) <div class="product-badge product-badge2 bg-info"> -{{PriceHelper::DiscountPercentage($popular_category_item)}}</div> @endif <img class="lazy" data-src="{{asset('assets/images/'.$popular_category_item->thumbnail)}}" alt="Product"> <div class="product-button-group"> <a class="product-button wishlist_store" href="{{route('user.wishlist.store',$popular_category_item->id)}}" title="{{__('Wishlist')}}"><i class="icon-heart"></i></a> <a data-target="{{route('fornt.compare.product',$popular_category_item->id)}}" class="product-button product_compare" href="javascript:;" title="{{__('Compare')}}"><i class="icon-repeat"></i></a> @include('includes.item_footer',['sitem'=>$popular_category_item]) </div> </div> <div class="product-card-body"> <div class="product-category"><a href="{{route('front.catalog').'?category='.$popular_category_item->category->slug}}">{{$popular_category_item->category->name}}</a></div> <h3 class="product-title"><a href="{{route('front.product',$popular_category_item->slug)}}"> {{ Str::limit($popular_category_item->name, 35) }} </a></h3> <div class="rating-stars"> <i class="far fa-star filled"></i><i class="far fa-star filled"></i><i class="far fa-star filled"></i><i class="far fa-star filled"></i><i class="far fa-star filled"></i> </div> <h4 class="product-price"> @if ($popular_category_item->previous_price != 0) <del>{{PriceHelper::setPreviousPrice($popular_category_item->previous_price)}}</del> @endif {{PriceHelper::grandCurrencyPrice($popular_category_item)}} </h4> </div> </div> </div> @endforeach </div> </div>
</div> </div> </section> @endif --}}
{{-- @if ($setting->is_three_c_b_second == 1) <div class="bannner-section mt-60"> <div class="container "> <div class="row gx-3"> <div class="col-md-4"> <a href="{{$banner_secend['url1']}}" class="genius-banner"> <img class="lazy" data-src="{{ asset('assets/images/'.$banner_secend['img1']) }}" alt=""> <div class="inner-content"> @if (isset($banner_secend['subtitle1'])) <p>{{$banner_secend['subtitle1']}}</p> @endif
@if (isset($banner_secend['title1'])) <h4>{{$banner_secend['title1']}}</h4> @endif </div> </a> </div> <div class="col-md-4"> <a href="{{$banner_secend['url2']}}" class="genius-banner"> <img class="lazy" data-src="{{ asset('assets/images/'.$banner_secend['img2']) }}" alt=""> <div class="inner-content"> @if (isset($banner_secend['subtitle2'])) <p>{{$banner_secend['subtitle2']}}</p> @endif
@if (isset($banner_secend['title2'])) <h4> {{$banner_secend['title2']}}</h4> @endif </div> </a> </div> <div class="col-md-4"> <a href="{{$banner_secend['url3']}}" class="genius-banner"> <img class="lazy" data-src="{{ asset('assets/images/'.$banner_secend['img3']) }}" alt=""> <div class="inner-content"> @if (isset($banner_secend['subtitle3'])) <p>{{$banner_secend['subtitle3']}} </p> @endif
@if (isset($banner_secend['title3'])) <h4>{{$banner_secend['title3']}}</h4> @endif </div> </a> </div> </div> </div> </div> @endif --}}
{{-- @if ($setting->is_highlighted == 1) <section class="selected-product-section speacial-product-sec mt-50"> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="section-title"> <div class="links"> <a data-href="{{route('front.get.product','feature')}}" data-target="type_product_view" href="javascript:;" class="product_get active">{{__('Featured')}}</a> <a data-href="{{route('front.get.product','best')}}" data-target="type_product_view" class="product_get" href="javascript:;">{{__('Best Seller')}}</a> <a data-href="{{route('front.get.product','top')}}" data-target="type_product_view" class="product_get" href="javascript:;">{{__('Top Rated')}}</a> <a data-href="{{route('front.get.product','new')}}" data-target="type_product_view" class="product_get" href="javascript:;">{{__('New Product')}}</a> </div> </div> </div> </div> <div class="row"> <div class="type_product_view d-none"> <img src="{{asset('assets/images/ajax_loader.gif')}}" alt=""> </div> <div class="col-lg-12" id="type_product_view">
<div class="features-slider owl-carousel" > @foreach ($products->orderBy('id','DESC')->get() as $item) @if ($item->is_type == 'feature') <div class="slider-item"> <div class="product-card "> <div class="product-thumb"> @if (!$item->is_stock()) <div class="product-badge bg-secondary border-default text-body ">{{__('out of stock')}}</div> @endif @if($item->previous_price && $item->previous_price !=0) <div class="product-badge product-badge2 bg-info"> -{{PriceHelper::DiscountPercentage($item)}}</div> @endif <img class="lazy" data-src="{{asset('assets/images/'.$item->thumbnail)}}" alt="Product"> <div class="product-button-group"><a class="product-button wishlist_store" href="{{route('user.wishlist.store',$item->id)}}" title="{{__('Wishlist')}}"><i class="icon-heart"></i></a> <a data-target="{{route('fornt.compare.product',$item->id)}}" class="product-button product_compare" href="javascript:;" title="{{__('Compare')}}"><i class="icon-repeat"></i></a> @include('includes.item_footer',['sitem' => $item]) </div> </div> <div class="product-card-inner"> <div class="product-card-body"> <div class="product-category"><a href="{{route('front.catalog').'?category='.$item->category->slug}}">{{$item->category->name}}</a></div> <h3 class="product-title"><a href="{{route('front.product',$item->slug)}}"> {{ Str::limit($item->name, 35) }} </a></h3> <div class="rating-stars"> {!! renderStarRating($item->reviews->avg('rating')) !!} </div> <h4 class="product-price"> @if ($item->previous_price != 0) <del>{{PriceHelper::setPreviousPrice($item->previous_price)}}</del> @endif {{PriceHelper::grandCurrencyPrice($item)}} </h4> </div>
</div> </div> </div> @endif @endforeach </div> </div>
</div> </div> </section> @endif --}}
{{-- @if ($extra_settings->is_t1_falsh == 1) <div class="flash-sell-new-section mt-50"> <div class="container"> <div class="row"> <div class="col-lg-12 "> <div class="section-title"> <h2 class="h3">{{ __('Flash Deal') }}</h2> </div> </div> </div> <div class="row"> <div class="col-lg-12"> <div class="main-content"> <div class="flash-deal-slider owl-carousel" > @foreach ($products->orderBy('id','DESC')->get() as $item) @if ($item->is_type == 'flash_deal' && $item->date != null) <div class="slider-item"> <div class="product-card "> <div class="product-thumb"> @if (!$item->is_stock()) <div class="product-badge bg-secondary border-default text-body ">{{__('out of stock')}}</div> @endif @if($item->previous_price && $item->previous_price !=0) <div class="product-badge product-badge2 bg-info"> -{{PriceHelper::DiscountPercentage($item)}}</div> @endif <img class="lazy" data-src="{{asset('assets/images/'.$item->thumbnail)}}" alt="Product"> <div class="product-button-group"><a class="product-button wishlist_store" href="{{route('user.wishlist.store',$item->id)}}" title="{{__('Wishlist')}}"><i class="icon-heart"></i></a> <a data-target="{{route('fornt.compare.product',$item->id)}}" class="product-button product_compare" href="javascript:;" title="{{__('Compare')}}"><i class="icon-repeat"></i></a> @include('includes.item_footer',['sitem' => $item]) </div> </div> <div class="product-card-inner"> <div class="product-card-body">
<div class="product-category"><a href="{{route('front.catalog').'?category='.$item->category->slug}}">{{$item->category->name}}</a></div> <h3 class="product-title"><a href="{{route('front.product',$item->slug)}}"> {{ Str::limit($item->name, 50) }} </a></h3> <div class="rating-stars"> {!! renderStarRating($item->reviews->avg('rating')) !!} </div> <h4 class="product-price"> @if ($item->previous_price != 0) <del>{{PriceHelper::setPreviousPrice($item->previous_price)}}</del> @endif
{{PriceHelper::grandCurrencyPrice($item)}} </h4> @if (date('d-m-y') != \Carbon\Carbon::parse($item->date)->format('d-m-y')) <div class="countdown countdown-alt mb-3" data-date-time="{{ $item->date }}"> </div> @endif </div>
</div> </div> </div> @endif @endforeach </div> </div> </div> </div> </div> </div> @endif --}}
{{-- @if ($setting->is_two_column_category == 1) <div class="flash-sell-area mt-50"> <div class="container"> <div class="row gx-3 justify-content-center"> @foreach ($two_column_categoriess as $two_column_key => $two_column_category) <div class="col-xl-4 col-lg-6"> <div class="section-title"> <h2 class="h3">{{ $two_column_category['name']->name }}</h2> </div> <div class="main-content"> <div class="newproduct-slider owl-carousel"> @foreach ($two_column_categoriess[$two_column_key]['items']->chunk(4) as $two_column_category_itemt) <div class="slider-item"> @foreach ($two_column_category_itemt as $two_column_category_item) <div class="product-card p-col"> <a class="product-thumb" href="{{route('front.product',$two_column_category_item->slug)}}"> @if(!$two_column_category_item->is_stock()) <div class="product-badge bg-secondary border-default text-body ">{{__('out of stock')}}</div> @endif
<img class="lazy" data-src="{{asset('assets/images/'.$two_column_category_item->thumbnail)}}" alt="Product"></a> <div class="product-card-body"> <h3 class="product-title"><a href="{{route('front.product',$two_column_category_item->slug)}}"> {{ Str::limit($two_column_category_item->name, 40) }} </a></h3> <div class="rating-stars"> {!! renderStarRating($two_column_category_item->reviews->avg('rating')) !!} </div> <h4 class="product-price"> @if ($two_column_category_item->previous_price != 0) <del>{{PriceHelper::setPreviousPrice($two_column_category_item->previous_price)}}</del> @endif {{PriceHelper::grandCurrencyPrice($two_column_category_item)}} </h4> </div> </div> @endforeach
</div> @endforeach </div>
</div> </div> @endforeach
</div> </div> </div> @endif --}}
{{-- @if ($setting->is_two_c_b == 1) <div class="bannner-section mt-50"> <div class="container "> <div class="row gx-3"> <div class="col-md-6"> <a href="{{$banner_third['url1']}}" class="genius-banner"> <img class="lazy" data-src="{{ asset('assets/images/'.$banner_third['img1']) }}" alt=""> <div class="inner-content"> @if (isset($banner_third['subtitle1'])) <p>{{$banner_third['subtitle1']}}</p> @endif @if (isset($banner_third['title1'])) <h4>{{$banner_third['title1']}}</h4> @endif </div> </a> </div> <div class="col-md-6"> <a href="{{$banner_third['url2']}}" class="genius-banner"> <img class="lazy" data-src="{{ asset('assets/images/'.$banner_third['img2']) }}" alt=""> <div class="inner-content"> @if (isset($banner_third['subtitle2'])) <p>{{$banner_third['subtitle2']}} </p> @endif @if (isset($banner_third['title2'])) <h4>{{$banner_third['title2']}}</h4> @endif </div> </a> </div> </div> </div> </div> @endif --}}
{{-- @if ($setting->is_featured_category == 1) <section class="selected-product-section featured_cat_sec sps-two mt-50"> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="section-title"> <h2 class="h3">{{ $feature_category_title }}</h2> <div class="links"> @foreach ($feature_categories as $key => $feature_category) <a class="category_get {{$loop->first ? 'active' : ''}}" data-target="feature_category_view" data-href="{{route('front.popular.category',[$feature_category->slug,'feature_category','normal'])}}" href="javascript:;" class="{{$loop->first ? 'active' : ''}}">{{$feature_category->name}}</a> @endforeach </div> </div> </div> </div> <div class="feature_category_view d-none"> <img src="{{asset('assets/images/ajax_loader.gif')}}" alt=""> </div> <div class="row g-3" id="feature_category_view"> @foreach ($feature_category_items as $feature_category_item) <div class="col-gd"> <div class="product-card"> <div class="product-thumb" >
@if (!$feature_category_item->is_stock()) <div class="product-badge bg-secondary border-default text-body ">{{__('out of stock')}}</div> @endif @if($feature_category_item->previous_price && $feature_category_item->previous_price !=0) <div class="product-badge product-badge2 bg-info"> -{{PriceHelper::DiscountPercentage($feature_category_item)}}</div> @endif <img class="lazy" data-src="{{asset('assets/images/'.$feature_category_item->thumbnail)}}" alt="Product"> <div class="product-button-group"><a class="product-button wishlist_store" href="{{route('user.wishlist.store',$feature_category_item->id)}}" title="{{__('Wishlist')}}"><i class="icon-heart"></i></a> <a data-target="{{route('fornt.compare.product',$feature_category_item->id)}}" class="product-button product_compare" href="javascript:;" title="{{__('Compare')}}"><i class="icon-repeat"></i></a>
@include('includes.item_footer',['sitem'=>$feature_category_item])
</div> </div> <div class="product-card-body"> <div class="product-category"><a href="{{route('front.catalog').'?category='.$feature_category_item->category->slug}}">{{$feature_category_item->category->name}}</a></div> <h3 class="product-title"><a href="{{route('front.product',$feature_category_item->slug)}}"> {{ Str::limit($feature_category_item->name, 35) }} </a></h3> <div class="rating-stars"> <i class="far fa-star filled"></i><i class="far fa-star filled"></i><i class="far fa-star filled"></i><i class="far fa-star filled"></i><i class="far fa-star filled"></i> </div> <h4 class="product-price"> @if ($feature_category_item->previous_price != 0) <del>{{PriceHelper::setPreviousPrice($feature_category_item->previous_price)}}</del> @endif {{PriceHelper::grandCurrencyPrice($feature_category_item)}} </h4> </div>
</div> </div> @endforeach
</div> </div> </section> @endif --}}
{{-- @if ($setting->is_blogs == 1) <div class="blog-section-h page_section mt-50 mb-30"> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="section-title"> <h2 class="h3">{{ __('Our Blog') }}</h2> </div> </div> </div> <div class="row justify-content-center"> <div class="col-lg-12"> <div class="home-blog-slider owl-carousel"> @foreach ($posts as $post) <div class="slider-item"> <a href="{{route('front.blog.details',$post->slug)}}" class="blog-post"> <div class="post-thumb"> <img class="lazy" data-src="{{ asset('assets/images/' . json_decode($post->photo, true)[array_key_first(json_decode($post->photo, true))]) }}" alt="Blog Post"> </div> <div class="post-body">
<h3 class="post-title"> {{ Str::limit($post->title, 55) }} </h3> <ul class="post-meta">
<li><i class="icon-user"></i>{{ __('Admin') }}</li> <li><i class="icon-clock"></i>{{ date('jS F, Y', strtotime($post->created_at)) }}</li> </ul> <p>{{ Str::limit(strip_tags($post->details), 120) }} </p> </div> </a> </div> @endforeach </div> </div> </div> </div> </div> @endif --}}
{{-- @if ($setting->is_popular_brand == 1) <section class="brand-section mt-30 mb-60"> <div class="container "> <div class="row"> <div class="col-lg-12 "> <div class="section-title"> <h2 class="h3">{{ __('Popular Brands') }}</h2> </div> </div> </div> <div class="row"> <div class="col-lg-12"> <div class="brand-slider owl-carousel"> @foreach ($brands as $brand) <div class="slider-item"> <a class="text-center" href="{{ route('front.catalog') . '?brand=' . $brand->slug }}"> <img class="d-block hi-50 lazy" data-src="{{ asset('assets/images/' . $brand->photo) }}" alt="{{ $brand->name }}" title="{{ $brand->name }}"> </a> </div> @endforeach </div> </div> </div> </div> </section> @endif --}}
@endsection
|