@extends('layouts.app') @section('title', 'All Products - Kita Konbini') @section('content') {{-- Hero --}}

All Products

Browse our full range of snacks, beverages, instant food & stationery.

{{-- Category Filter --}}

Categories

@foreach($categories as $category) {{ $category->icon }} {{ $category->name }} @endforeach
{{-- Products Grid --}}

All Products

@forelse($products as $product)
{{-- Wishlist heart --}}
@if($product->image) {{ $product->name }} @else
🛒
@endif
{{ $product->category->name }}

{{ $product->name }}

Shelf: {{ $product->shelf_code }}

@empty

No products found.

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