@extends('layouts.shop') @section('title', 'Welcome to ' . \App\Models\Setting::get('site_name', 'TechEx')) @section('content') {{-- ============================================ --}} {{-- 1. HERO SLIDER --}} {{-- ============================================ --}} @if($sliders->count() > 0)
@foreach($sliders as $index => $slide)
Slide {{ $index + 1 }}
New Collection

Premium Tech Gear

Discover cutting-edge electronics and accessories designed for modern creators and innovators.

@if($slide->link) Shop Now @endif
@endforeach
@else
High-Quality Premium Gear

Shop Smarter. & Live Better.

Explore a curated collection of high-quality products with unbeatable prices, fast delivery, and a seamless shopping experience all in one place.

@endif {{-- ============================================ --}} {{-- 2. TRUST BADGES / WHY CHOOSE US --}} {{-- ============================================ --}}
@php $benefits = [ ['icon' => 'fa-shield-check', 'title' => 'Secure Payment', 'desc' => '100% protected', 'color' => 'from-emerald-600 to-teal-500'], ['icon' => 'fa-rotate-left', 'title' => 'Easy Returns', 'desc' => '30-day return policy', 'color' => 'from-orange-600 to-amber-500'], ['icon' => 'fa-headset', 'title' => '24/7 Support', 'desc' => 'Dedicated help center', 'color' => 'from-purple-600 to-pink-500'], ]; @endphp @foreach($benefits as $b)

{{ $b['title'] }}

{{ $b['desc'] }}

@endforeach
{{-- ============================================ --}} {{-- 3. STATS COUNTER SECTION --}} {{-- ============================================ --}}
@php $stats = [ ['value' => $totalProducts, 'label' => 'Products', 'icon' => 'fa-box', 'suffix' => '+'], ['value' => $totalOrders, 'label' => 'Orders Delivered', 'icon' => 'fa-truck', 'suffix' => '+'], ['value' => $totalCategories, 'label' => 'Categories', 'icon' => 'fa-layer-group', 'suffix' => '+'], ]; @endphp @foreach($stats as $s)
0{{ $s['suffix'] }}

{{ $s['label'] }}

@endforeach
{{-- ============================================ --}} {{-- 4. CATEGORIES SECTION --}} {{-- ============================================ --}}
Categories

Shop by Category

Explore our curated collections tailored to your style.

@if($categories->count() > 4) @endif
{{-- ============================================ --}} {{-- 5. FEATURED PRODUCTS --}} {{-- ============================================ --}}
Featured

Trending Now

Our most popular products handpicked for you.

View All Catalog
@forelse($featuredProducts as $product)
{{ $product->name }} @if($product->total_stock <= 0) Out of Stock @elseif(!empty($product->sizes) || !empty($product->colors)) Variants @elseif($product->stock <= 5) Low Stock @endif
Quick View
{{ $product->category->name }}

{{ $product->name }}

{{ $product->description }}

৳{{ number_format($product->price, 0) }} @if($product->compare_price) ৳{{ number_format($product->compare_price, 0) }} @endif
@if(!empty($product->sizes) || !empty($product->colors)) @elseif($product->stock > 0)
@csrf
@else @endif
@empty

No Featured Products Yet

Check back soon for our curated picks.

Browse All Products
@endforelse
{{-- ============================================ --}} {{-- 7. NEWSLETTER / CTA BANNER --}} {{-- ============================================ --}}
Stay Connected

Join Our Newsletter

Get special offers, new arrivals, and exclusive deals straight to your inbox.

No spam, ever. Unsubscribe anytime.

@endsection @push('styles') @endpush @push('scripts') @endpush