@php $state = $getState(); $color = $getColor(); $colorClass = match ($color) { 'danger' => 'text-danger-500', 'gray' => 'text-gray-500', 'info' => 'text-info-500', 'primary' => 'text-primary-500', 'success' => 'text-success-500', 'warning' => 'text-warning-500', default => "text-{$color}-500", }; $size = $getSize(); $sizeClass = match ($size) { 'xs' => 'w-3 h-3', 'sm' => 'w-4 h-4', 'md' => 'w-6 h-6', 'lg' => 'w-8 h-8', 'xl' => 'w-10 h-10', }; @endphp
@if ($shouldAllowZero())
$state !== 0, "text-danger-500" => $state === 0, ]) >
@endif @foreach ($getStarsArray() as $value)
$state < $value, $colorClass => $state >= $value, ]) >
@endforeach