mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
23 lines
1.2 KiB
PHP
23 lines
1.2 KiB
PHP
@props(['label', 'name', 'options', 'selected', 'hint'])
|
|||
|
|
|
||
|
|
<div {{ $attributes }}>
|
||
|
|
@isset($label)
|
||
|
|
<label for="{{ $name }}" class="tw-mb-0 tw-text-sm tw-leading-5 tw-font-medium tw-text-gray-700 dark:tw-text-gray-400">
|
||
|
|
{{ $label }}
|
||
|
|
</label>
|
||
|
|
@endif
|
||
|
|
<select id="{{ $name }}" class="tw-p-5px tw-text-sm tw-bg-gray-50 tw-border tw-border-gray-300 tw-text-gray-900 tw-rounded-lg focus:tw-ring-blue-500 focus:tw-border-blue-500 tw-p-1 dark:tw-bg-gray-700 dark:tw-border-gray-600 dark:tw-placeholder-gray-400 dark:tw-text-white dark:tw-focus:ring-blue-500 dark:focus:tw-border-blue-500">
|
||
|
|
<option hidden disabled @empty($selected)selected @endempty>{{ $hint ?? __('Choose') }}</option>
|
||
|
|
@foreach($options ?? [] as $option)
|
||
|
|
<option value="{{ $option['value'] ?? $option }}"
|
||
|
|
@if(isset($selected) && $selected == ($option['value'] ?? $option))selected @endif
|
||
|
|
>
|
||
|
|
@isset($option['icon'])
|
||
|
|
<i class="fa fa-fw fa-lg {{ $option['icon'] }}"></i>
|
||
|
|
@endisset
|
||
|
|
{{ $option['text'] ?? $option }}
|
||
|
|
</option>
|
||
|
|
@endforeach
|
||
|
|
</select>
|
||
|
|
</div>
|