@props([ 'id', 'name', 'value' => '', 'options' => [], ]) @php $selectedValue = (string) $value; $selectedOption = collect($options)->first(fn (array $option): bool => (string) $option['value'] === $selectedValue); $selectedLabel = $selectedOption['label'] ?? ($options[0]['label'] ?? 'Selecione'); @endphp