@extends('layouts.shop') @section('title', 'Browse Catalog') @section('content')

Store Catalog

Explore all premium products and tech gear.

@if(request('search') || request('category') || request('min_price') || request('max_price'))
Showing results for: @if(request('search')) "{{ request('search') }}" @endif @if(request('category')) Category: {{ request('category') }} @endif @if(request('min_price') || request('max_price')) Price: ৳{{ request('min_price', 0) }} - ৳{{ request('max_price', 'Any') }} @endif
Clear Filters
@endif @if($products->isEmpty())

No products found

We couldn't find any products matching your selection. Try clearing your filters or exploring another search query.

@else
@foreach($products 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
{{ $product->category->name }}

{{ $product->name }}

{{ $product->description }}

৳{{ number_format($product->price, 0) }} @if(!empty($product->sizes) || !empty($product->colors)) @elseif($product->stock > 0) @else @endif
@endforeach
{{ $products->links() }}
@endif
@endsection @push('scripts') @endpush