@props(['value' => 0, 'max' => 5, 'size' => 'md', 'readonly' => false, 'name' => 'rating', 'color' => 'yellow']) @php $sizeClass = match($size) { 'sm' => 'w-4 h-4', 'md' => 'w-5 h-5', 'lg' => 'w-6 h-6', default => 'w-5 h-5' }; $colorClass = match($color) { 'yellow' => 'text-yellow-400', 'blue' => 'text-blue-500', 'red' => 'text-red-500', 'green' => 'text-green-500', 'purple' => 'text-purple-500', default => 'text-yellow-400' }; @endphp