@extends('layouts.app') @section('title', ($shopSettings['meta_title'] ?? (($shopSettings['shop_name'] ?? 'Orange Groceries') . ' - Online Grocery Store & 30-Min Delivery'))) @section('meta_description', $shopSettings['meta_description'] ?? ('Order quality groceries, daily staples, snacks and essentials online from ' . ($shopSettings['shop_name'] ?? 'Orange Groceries') . '. Enjoy lowest prices and fast 30-minute delivery.')) @section('meta_keywords', $shopSettings['meta_keywords'] ?? ('online grocery, buy grocery online, daily essentials, spices, staples, snacks, ' . ($shopSettings['shop_name'] ?? 'Orange Groceries'))) @section('canonical', route('home')) @section('content') @if($activePopup)
@if($activePopup->image) {{ $activePopup->title }} @endif
🎉 Special Promotional Offer

{{ $activePopup->title }}

{{ $activePopup->description }}

@endif
@if(count($heroBanners) > 0) @foreach($heroBanners as $index => $banner)
{{ $banner->title }} @if(strtolower(trim($banner->title)) !== 'banner' && !empty(trim($banner->title)))
âš¡ Fast 30-Min Express Delivery

{{ $banner->title }}

@endif
@endforeach @else
Super Grocery Saver

Daily Grocery Essentials Delivered Fast

Get up to 40% OFF on daily groceries, staples, snacks & essentials today.

Shop Catalog
@endif
@for($i = 0; $i < (count($heroBanners) > 0 ? count($heroBanners) : 1); $i++) @endfor

Explore Categories

Browse daily essentials by category

View All
@foreach($categories as $cat)
{{ $cat->name }}
{{ $cat->name }}
@endforeach
@include('customer.components.flipkart_filter_bar', ['categories' => $categories])
@if($hasFilter)
Search & Filter Results

Found {{ $filteredProducts->total() }} Products

Reset Search
@if($filteredProducts->count() > 0)
@foreach($filteredProducts as $product) @include('customer.components.product_card', ['product' => $product]) @endforeach
{{ $filteredProducts->links() }}
@else

No Products Found

We couldn't find any products matching your selected filter criteria. Try adjusting your filters.

Clear Filters
@endif
@endif @if(!$hasFilter)

Featured Products

Handpicked premium items with top discounts

See More
@foreach($featuredProducts as $product) @include('customer.components.product_card', ['product' => $product]) @endforeach
@if(count($offerBanners) > 0)
{{ $offerBanners[0]->title }}
Limited Time Weekend Offer

{{ $offerBanners[0]->title }}

Claim Offer Now
@endif

Best Sellers

Most ordered groceries by local customers

See All
@foreach($bestsellers as $product) @include('customer.components.product_card', ['product' => $product]) @endforeach

Trending Products

View All
@foreach($trendingProducts->take(4) as $product) @include('customer.components.product_card', ['product' => $product]) @endforeach

New Arrivals

View All
@foreach($newArrivals->take(4) as $product) @include('customer.components.product_card', ['product' => $product]) @endforeach
@if(isset($allProducts) && $allProducts->count() > 0)

Explore All Products

Browse our full selection of fresh groceries, staples & daily essentials

View All Catalog
@foreach($allProducts as $product) @include('customer.components.product_card', ['product' => $product]) @endforeach
@if($allProducts->hasPages())
{{ $allProducts->links() }}
@endif
@endif @endif @endsection