Viewing file: c14fba980b37a8b8c84dd629ee39c5176f80bdb6.php (2.82 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<div class="tab-pane fade" id="v-pills-font" role="tabpanel" aria-labelledby="v-pills-font-tab">
<div class="row">
<div class="col-sm-12 pr-0">
<div class="table-responsive">
<table class="table table-bordered table-hover table-main">
<thead class="text-dark border-top-gray bg-light-gray">
<tr>
<th><?php echo e(__('Name')); ?></th>
<th width="350"><?php echo e(__('Font Family')); ?></th>
</tr>
</thead>
<tbody>
<?php $__currentLoopData = $layouts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $data): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td>
<?php echo e(ucFirst(str_replace('_', ' ', $data))); ?>
<form></form>
</td>
<td>
<?php
$fonts = $themeOption->where('name', $data . '_template_font_family');
$font = 'DM Sans, sans-serif';
if ($fonts->count()) {
$font = $fonts->first()->value;
}
?>
<div class="form-group">
<select name="<?php echo e($data); ?>_template_font_family" id="" class="select2-hide-search">
<?php $__currentLoopData = $fontFamilies; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $fontFamily): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option <?php if($font == $fontFamily): echo 'selected'; endif; ?> value="<?php echo e($fontFamily); ?>"><?php echo e($fontFamily); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
</div>
</td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<?php /**PATH /home/picotech/domains/ecom1.picotech.app/public_html/Modules/CMS/Resources/views/partials/themes/page/font.blade.php ENDPATH**/ ?>
|