You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
668 B
20 lines
668 B
@if($inline) |
|
<div class="d-flex flex-wrap"> |
|
@endif |
|
|
|
@foreach($options as $k => $label) |
|
<div class="vs-radio-con vs-radio-{{ $style }}" style="margin-right: {{ $right }}"> |
|
<input {!! in_array($k, $disabled) ? 'disabled' : '' !!} value="{{$k}}" {!! $attributes !!} {!! \Dcat\Admin\Support\Helper::equal($checked, $k) ? 'checked' : '' !!}> |
|
<span class="vs-radio vs-radio-{{ $size }}"> |
|
<span class="vs-radio--border"></span> |
|
<span class="vs-radio--circle"></span> |
|
</span> |
|
@if($label !== null && $label !== '') |
|
<span>{!! $label !!}</span> |
|
@endif |
|
</div> |
|
@endforeach |
|
|
|
@if($inline) |
|
</div> |
|
@endif
|
|
|