14 lines
751 B
PHP
14 lines
751 B
PHP
<button type="button" class="btn <?php echo e($wizardButtonOptions['style']); ?> <?php echo e($wizardButtonOptions['class']); ?>"
|
|
<?php if(key_exists('data', $wizardButtonOptions)): ?>
|
|
<?php $__currentLoopData = $wizardButtonOptions['data']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
|
data-<?php echo e($key); ?>="<?php echo e($value); ?>"
|
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
|
<?php endif; ?>
|
|
>
|
|
<?php if(isset($wizardButtonOptions['icon'])): ?>
|
|
<span id="" class="<?php echo e($wizardButtonOptions['icon']); ?>"></span>
|
|
<?php endif; ?>
|
|
<?php echo e($wizardButtonOptions['label']); ?>
|
|
|
|
</button>
|