blessing-skin-server/resources/views/vendor/option-form/select.tpl
2016-11-17 17:32:12 +08:00

9 lines
250 B
PHP

<select class="form-control" name="{{ $id }}">
@foreach ((array) $items as $item)
<?php list($id, $name) = $item; ?>
<option {!! $selected == $id ? 'selected="selected"' : '' !!} value="{{ $id }}">{{ $name }}</option>
@endforeach
</select>