@extends('layouts.store') @section('content')
@forelse($products as $product)
{{ $product->name }}

{{ $product->category?->name }}

{{ $product->name }}

₹{{ number_format($product->price * 85, 0) }}

@empty

No products found.

@endforelse
{{ $products->links() }}
@endsection