2023-07-13 11:16:24 +00:00
|
|
|
<div class="w-full">
|
2023-06-12 10:00:01 +00:00
|
|
|
@if ($label)
|
2023-07-28 07:10:35 +00:00
|
|
|
<label for="small-input" class="flex items-center gap-1 mb-1 text-sm font-medium">{{ $label }}
|
2023-07-13 11:16:24 +00:00
|
|
|
@if ($required)
|
|
|
|
<span class="text-warning">*</span>
|
|
|
|
@endif
|
|
|
|
@if ($helper)
|
2023-08-11 18:19:42 +00:00
|
|
|
<x-helper :helper="$helper" />
|
2023-07-13 11:16:24 +00:00
|
|
|
@endif
|
2023-06-12 10:00:01 +00:00
|
|
|
</label>
|
|
|
|
@endif
|
2023-08-11 18:19:42 +00:00
|
|
|
<select {{ $attributes->merge(['class' => $defaultClass]) }} @required($required) wire:dirty.class.remove='text-white'
|
2023-07-13 11:16:24 +00:00
|
|
|
wire:dirty.class="text-black bg-warning" wire:loading.attr="disabled" name={{ $id }}
|
2023-07-13 20:03:27 +00:00
|
|
|
@if ($attributes->whereStartsWith('wire:model')->first()) {{ $attributes->whereStartsWith('wire:model')->first() }} @else wire:model.defer={{ $id }} @endif>
|
2023-05-04 08:45:09 +00:00
|
|
|
{{ $slot }}
|
|
|
|
</select>
|
2023-08-11 14:13:53 +00:00
|
|
|
@error($id)
|
2023-08-11 18:19:42 +00:00
|
|
|
<label class="label">
|
|
|
|
<span class="text-red-500 label-text-alt">{{ $message }}</span>
|
|
|
|
</label>
|
2023-08-11 14:13:53 +00:00
|
|
|
@enderror
|
2023-06-05 11:50:34 +00:00
|
|
|
</div>
|