@props([ 'blankValue' => 'Select an option', 'align' => 'left', 'width' => '48', 'contentClasses' => 'py-1 bg-white dark:bg-gray-700', 'dropdownClasses' => '', 'disabled' => false, 'name' => null, 'options' => [], 'selected' => null ]) @php $alignmentClasses = match ($align) { 'left' => 'ltr:origin-top-left rtl:origin-top-right start-0', 'top' => 'origin-top', 'none', 'false' => '', default => 'ltr:origin-top-right rtl:origin-top-left end-0', }; $width = match ($width) { '48' => 'w-48', '60' => 'w-60', 'full' => 'w-full', default => 'w-48', }; @endphp