@extends('layouts.app') @section('title','Home') @push('head') @endpush @section('content')

Shop smarter,
pay via WhatsApp

Browse our curated collection and checkout instantly. No account needed.

Checkout via WhatsApp · No account needed
All Items @foreach($categories as $cat) {{ ucfirst($cat) }} @endforeach
@forelse($products as $product) @php $bgMap = ['electronics'=>'linear-gradient(135deg,#eef2ff,#c5cffc)','fashion'=>'linear-gradient(135deg,#fff0f6,#f7c6e0)','home'=>'linear-gradient(135deg,#f0fdf4,#bbf7d0)','food'=>'linear-gradient(135deg,#fffbeb,#fde68a)']; $bg = $bgMap[$product->category] ?? '#f4f1eb'; $oos = $product->stock === 0; @endphp
@if($product->badge){{ $product->badge }}@endif @if($oos)Out of Stock@endif @if($product->image_url) @else {{ $product->emoji }} @endif
{{ $product->category }}
{{ $product->name }}
{{ Str::limit($product->description, 80) }}
@empty
🛍️
No products found in this category.
@endforelse
@endsection