@extends('store.layouts.app') @section('title', 'Home') @section('meta_description', 'Fresh groceries delivered – ' . ($store_name ?? config('app.name'))) @section('content')
{{-- Location & Search Bar --}}
{{-- Trust Badges --}}
100% Fresh
10 Min Delivery
Quality Assured
Easy Returns
{{-- Hero Slider --}} @if($sliders->isNotEmpty())
@foreach($sliders as $index => $slide)
@if($slide->image_path) {{ $slide->title }} @else

{{ $slide->title }}

@if($slide->subtitle)

{{ $slide->subtitle }}

@endif
@endif @if($slide->link_url) @endif
@endforeach @if($sliders->count() > 1)
@foreach($sliders as $i => $s) @endforeach
@endif
@endif {{-- Quick Access Cards --}}
Daily Essentials
Fresh Fruits
Dairy Products
All Categories
{{-- Categories --}}

Shop by Category

@foreach($categories as $cat) @if($cat->image) {{ $cat->name }} @else
@endif {{ $cat->name }}
@endforeach
{{-- Featured --}} @if($featured->isNotEmpty())

Featured Products

View All
@foreach($featured as $product) @include('store.components.product-card', ['product' => $product]) @endforeach
@endif {{-- Best Deals --}} @if($bestDeals->isNotEmpty())

🔥 Best Deals

Limited time offers - Don't miss out!

@foreach($bestDeals as $product) @include('store.components.product-card', ['product' => $product]) @endforeach
@endif {{-- Popular --}} @if($popular->isNotEmpty())

🔥 Popular Now

View All
@foreach($popular as $product) @include('store.components.product-card', ['product' => $product]) @endforeach
@endif {{-- App download banner --}}

📱 Get the App

Order faster, track deliveries, and get exclusive offers!

{{-- Newsletter --}}

📧 Subscribe to Newsletter

Get exclusive deals, new product alerts, and special offers delivered to your inbox.

@csrf
@if($sliders->count() > 1) @push('scripts') @endpush @endif @endsection