mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-01-06 13:34:50 +08:00
8 lines
273 B
PHP
8 lines
273 B
PHP
<select class="form-control" name="{{ $id }}" {{ $disabled or '' }}>
|
|
|
|
@foreach ((array) $options as $option)
|
|
<option {!! $selected == $option['value'] ? 'selected="selected"' : '' !!} value="{{ $option['value'] }}">{{ $option['name'] }}</option>
|
|
@endforeach
|
|
|
|
</select>
|