{{-- @dd($this->filterAttributes) --}}
Showing {{ $products->count() }} of {{ $totalProductCount }} Products
{{-- @dd($products) --}}
@forelse ($products as $product) {{-- @dd($product->variations->min('mrp')) --}} @php $isInWishlist = $wishlist->contains('product_id', $product->product_id); // dd($product->wishlist); @endphp @php $mrp = $product->variations[0]->mrp ?? $product->base_mrp; $price = $product->variations[0]->price ?? $product->base_price; $percentOff = $mrp > 0 && $price > 0 ? round((($mrp - $price) / $mrp) * 100) : 0; @endphp
@if ($product->on_sale) Sale @endif Product image
{{-- Women --}}
{{-- @dd($product) --}}

{{ $product->product_name }}

₹{{ number_format($product->base_price, 2, '.', ',') }}
@forelse ($product->images->take(3) as $image) {{-- @dd($image) --}} product desc @empty @endforelse
@empty

No Product Found

@endforelse