Viewing file: b09a77e324abd8f0970c727981c1b10fecddcf86.php (4.63 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?> <?php echo e(json_decode(get_settings('site_setting'))->name); ?> - <?php echo e(trans('multirestaurant::layout.multi_restaurants')); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('css'); ?> <style> .faq-section h1 { font-size: 1.875rem; line-height: 2.25rem; margin: 0; font-weight: 700; }
.faq-section p { font-weight: 600; color: #64748b; font-size: .875rem; line-height: 1.25rem; margin: 0; }
.faq-section-content-item { border: 1px dashed #64748b; background-color: #f8fafc; margin-top: .25rem; margin-bottom: .25rem; border-radius: 5px; }
.faq-section-content-link { position: relative; padding: 12px 16px; color: rgba(0, 0, 0, 0.88); cursor: pointer; transition: all 0.3s, visibility 0s; }
.faq-section-content-link-header { display: flex; justify-content: space-between; align-items: center; }
.faq-section-content-link-header span { font-size: 16px; } .faq-section-content-link-header i { padding-left: 20px; } .faq-section-content-link-body{ background-color: transparent; border: 0; color: rgba(0, 0, 0, 0.88); display: none; } .faq-section-content-link-body-box{ padding-top: 20px; display: flex; align-items: center; } .faq-section-content-item.active .faq-section-content-link-header i{ transform: rotate(90deg); padding-buttom: 20px; } .faq-section-content-item.active .faq-section-content-link-body{ display: block; } </style> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <main class="main"> <div class="mt-5 text-center faq-section"> <h1><?php echo e(trans('multirestaurant::layout.questions_look_here')); ?></h1> <p class="mt-2"><?php echo e(trans('multirestaurant::layout.questions_look_here_des')); ?></p>
<div class="mt-5 faq-section-content"> <div class="row"> <div class="col-lg-12"> <div class="row justify-content-center"> <div class="col-lg-8"> <?php $__currentLoopData = $faqs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $faq): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="faq-section-content-item <?php echo e($key == 0 ? 'active' : ''); ?>"> <div class="faq-section-content-link"> <div class="faq-section-content-link-header"> <span><b><?php echo e($faq->title); ?></b></span><i class="fa fa-angle-right"></i> </div> <div class="faq-section-content-link-body"> <div class="faq-section-content-link-body-box"> <?php echo $faq->description; ?>
</div> </div> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> </div> </div> </div> </div> </main> <?php $__env->stopSection(); ?> <?php $__env->startSection('js'); ?> <script> $(document).on('click', '.faq-section-content-item', function(e) { e.preventDefault(); if ($(this).hasClass('active')) { $(this).removeClass('active'); } else { $('.faq-section-content-item').removeClass('active'); $(this).addClass('active'); } }); </script> <?php $__env->stopSection(); ?>
<?php echo $__env->make('multirestaurant::layouts.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/test.qr.picotech.app/public_html/Modules/MultiRestaurant/Resources/views/faq.blade.php ENDPATH**/ ?>
|