@php
$starsColor = [];
$starsColor['1_star'] = 'rose';
$starsColor['2_stars'] = 'orange';
$starsColor['3_stars'] = 'yellow';
$starsColor['4_stars'] = 'teal';
$starsColor['5_stars'] = 'green';
@endphp
@foreach ($ratingsDistribution as $stars => $percent)
@if (!str_contains($stars, '_count'))
{{-- {{str_replace("_", " ", $stars)}} --}}
{{-- --}}
{{ str_repeat('*', (int) $stars) }}
{{-- {{ $ratingsDistribution->{$stars . '_count'} ?? 0 }} --}}
{{ number_format($percent, 0) }}%