11 lines
429 B
PHP
11 lines
429 B
PHP
@props(['selectedStatus' => null ])
|
|
|
|
<select {!! $attributes->merge(['class' => 'border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 rounded-md shadow-sm']) !!}>
|
|
<option value="">Выберите статус</option>
|
|
@foreach($statuses as $status)
|
|
<option @selected($status == $selectedStatus) value="{{ $status }}">
|
|
{{ $status->description() }}
|
|
</option>
|
|
@endforeach
|
|
</select>
|