@extends('frontend.master') @section('title') Apricot Borka @endsection @section('content')
@foreach ($sliders as $slider)
@endforeach

Free Shipping & Returns

For all orders over $99

Secure Payment

We ensure secure payment

Money Back Guarantee

Any back within 30 days

Customer Support

Call or email us 24/7

{{-- top categories of the month --}}

Top Categories Of The Month

@foreach ($categories as $category) @endforeach

Popular Departments

@php $newArrivalProducts = App\Models\Admin\Product::where([ 'type' => 'new_arrival', 'show_homepage' => 1, ]) ->orderBy('id', 'DESC') ->get(); @endphp @forelse ($newArrivalProducts as $product) @empty

No Products Found!

@endforelse
@php $trendingProducts = App\Models\Admin\Product::where([ 'type' => 'trending', 'show_homepage' => 1, ]) ->orderBy('id', 'DESC') ->get(); @endphp @forelse ($trendingProducts as $product) @empty

No Products Found!

@endforelse
@php $mostPopularProducts = App\Models\Admin\Product::where([ 'type' => 'most_popular', 'show_homepage' => 1, ]) ->orderBy('id', 'DESC') ->get(); @endphp @forelse ($mostPopularProducts as $product) @empty

No Products Found!

@endforelse
@php $featuredProducts = App\Models\Admin\Product::where([ 'type' => 'featured', 'show_homepage' => 1, ]) ->orderBy('id', 'DESC') ->get(); @endphp @forelse ($featuredProducts as $product) @empty

No Products Found!

@endforelse
@foreach ($popularCategories as $popularCategory)
@php $categoryProducts = App\Models\Admin\Product::where( 'category_id', $popularCategory->category_id, ) ->take(8) ->get(); @endphp @foreach ($categoryProducts as $product)
@endforeach
@endforeach
@endsection