KTVCentral/resources/views/components/select-dropdown.blade.php
allen.yan 1c0853451b 202508032200
新增 Broadcast Template
2025-08-03 22:02:25 +08:00

16 lines
528 B
PHP

@props(['options', 'modelId' , 'fieldName', 'selected' ])
<div>
<select wire:change="selectChanged($event.target.value,'{{ $fieldName}}', {{ $modelId }})" class="border rounded">
@foreach ($options as $id => $name)
<option
value="{{ $id }}"
@if ($id == $selected)
selected="selected"
@endif
>
{{ $name }}
</option>
@endforeach
</select>
</div>