[WIP] Order process
This commit is contained in:
4
resources/views/components/form/radio.blade.php
Normal file
4
resources/views/components/form/radio.blade.php
Normal file
@@ -0,0 +1,4 @@
|
||||
<input type="radio" name="{{ $name }}" id="{{ $id_name ?? $id ?? $name }}" class="{{ $class ?? ''}}" value="{{ $val ?? 1}}" {{ $meta ?? '' }}
|
||||
@if ((($value ?? false) == ($val ?? false)) || (!isset($val) && $value)) checked @endif
|
||||
@if ($disabled ?? false) disabled="disabled" @endif
|
||||
>
|
||||
4
resources/views/components/form/radios/icheck.blade.php
Normal file
4
resources/views/components/form/radios/icheck.blade.php
Normal file
@@ -0,0 +1,4 @@
|
||||
<div class="icheck-{{ $color ?? 'success' }} {{ $class ?? '' }}">
|
||||
@include('components.form.radio')
|
||||
<label class="control-label light" for="{{ $id_name ?? $id ?? $name }}">{{ $label ?? '' }}</label>
|
||||
</div>
|
||||
Reference in New Issue
Block a user