@php
$avgRating = $rproduct['reviews_avg_rating'] ?? 0;
$fullStars = floor($avgRating);
$hasHalfStar = $avgRating - $fullStars >= 0.5;
@endphp
@for ($i = 1; $i <= 5; $i++)
@if ($i <= $fullStars)
@elseif($i == $fullStars + 1 && $hasHalfStar)
@else
@endif
@endfor
({{ $rproduct['reviews_count'] ?? 0 }})
@if (!empty($rproduct['discount']) && $rproduct['discount'] > 0)
₹{{ number_format($rproduct['sales_price']) }}
₹{{ number_format($rproduct['mrp']) }}
@else
₹{{ number_format($rproduct['mrp']) }}
@endif