{{-- Stars: visible on white bg --}}
@for($i = 1; $i <= 5; $i++)
@endfor
({{ $product->reviews_count }})
{{-- Product Name: dark text on white --}}
{{ $product->name }}
{{-- Price + Cart: white bg → dark text --}}
@if($product->is_on_sale)
Rs. {{ number_format($product->price) }}
Rs. {{ number_format($product->sale_price) }}
@else
Rs. {{ number_format($product->price) }}
@endif
@if($product->is_in_stock)
@else
@endif