chore(deps): added adminlte vendored items
(this might not be entirely necessary unless we're changing everything adminlte publishes) Signed-off-by: miguel456 <me@nogueira.codes>
This commit is contained in:
26
resources/views/vendor/adminlte/components/form/options.blade.php
vendored
Normal file
26
resources/views/vendor/adminlte/components/form/options.blade.php
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{{-- Empty option --}}
|
||||
@if(isset($emptyOption))
|
||||
|
||||
<option value>
|
||||
{{ is_string($emptyOption) ? $emptyOption : '' }}
|
||||
</option>
|
||||
|
||||
{{-- Placeholder option --}}
|
||||
@elseif(isset($placeholder))
|
||||
|
||||
<option class="d-none" value>
|
||||
{{ is_string($placeholder) ? $placeholder : '' }}
|
||||
</option>
|
||||
|
||||
@endif
|
||||
|
||||
{{-- Other options --}}
|
||||
@foreach($options as $key => $value)
|
||||
|
||||
<option value="{{ $key }}"
|
||||
@if($isSelected($key)) selected @endif
|
||||
@if($isDisabled($key)) disabled @endif>
|
||||
{{ $value }}
|
||||
</option>
|
||||
|
||||
@endforeach
|
Reference in New Issue
Block a user