13 lines
433 B
PHP
13 lines
433 B
PHP
<button type="button" class="btn {{ $wizardButtonOptions['style'] }} {{ $wizardButtonOptions['class'] }}"
|
|
@if(key_exists('data', $wizardButtonOptions))
|
|
@foreach($wizardButtonOptions['data'] as $key => $value)
|
|
data-{{ $key }}="{{ $value }}"
|
|
@endforeach
|
|
@endif
|
|
>
|
|
@if(isset($wizardButtonOptions['icon']))
|
|
<span id="" class="{{ $wizardButtonOptions['icon'] }}"></span>
|
|
@endif
|
|
{{ $wizardButtonOptions['label'] }}
|
|
</button>
|