shell bypass 403
<?php $__env->startSection('page_title'); ?>
| <?php echo e(trans('labels.faq')); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<div class="breadcrumb-sec">
<div class="container">
<div class="breadcrumb-sec-content">
<nav class="text-dark d-flex breadcrumb-divider" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item <?php echo e(session()->get('direction') == '2' ? 'breadcrumb-item-rtl ps-0' : ''); ?>"> <a class="fw-bold text-dark" href="<?php echo e(route('home')); ?>"><?php echo e(trans('labels.home')); ?></a> </li>
<li class="breadcrumb-item <?php echo e(session()->get('direction') == '2' ? 'breadcrumb-item-rtl ps-0' : ''); ?> text-primary fw-bold active" aria-current="page"><?php echo e(trans('labels.faq')); ?></li>
</ol>
</nav>
</div>
</div>
</div>
<section class="my-5">
<div class="container faq">
<h3 class="fw-bold fs-2 mb-4 color-changer truncate-2"><?php echo e(trans('labels.faq')); ?></h3>
<?php if(count($getfaqs) > 0): ?>
<div class="d-lg-flex justify-content-center">
<?php
$i = 1;
?>
<div class="col-lg-6 col-12 p-2 faq-img">
<img src="<?php echo e(helper::image_path(helper::appdata()->faq_image)); ?>" class="w-100" alt="">
</div>
<div class="col-lg-6 col-12 p-2">
<div class="accordion faq" id="faqleft">
<?php $__currentLoopData = $getfaqs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $faqdata): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="accordion-item border-0 bg-transparent d-flex flex-column gap-3 rounded mb-3">
<h2 class="accordion-header border rounded" id="faq<?php echo e($key); ?>">
<button class="accordion-button shadow-none rounded mb-0 <?php echo e($key==0 ? '' : 'collapsed'); ?> <?php echo e(session('direction') == 2 ? 'rtl' : ' '); ?>" type="button" data-bs-toggle="collapse"
data-bs-target="#faqs<?php echo e($key); ?>" aria-expanded="<?php echo e($key==0 ? 'true' : 'false'); ?>" aria-controls="collapseOne">
<?php echo e($faqdata->title); ?>
</button>
</h2>
<div id="faqs<?php echo e($key); ?>" class="accordion-collapse collapse <?php echo e($key==0 ? 'show' : ''); ?>" aria-labelledby="faq<?php echo e($key); ?>"
data-bs-parent="#faqleft">
<div class="accordion-body card fs-7 text-muted fw-600"><?php echo e($faqdata->description); ?></div>
</div>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
</div>
<?php else: ?>
<?php echo $__env->make('web.nodata', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endif; ?>
</div>
</section>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('scripts'); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('web.layout.default', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /www/wwwroot/koreanshop.lk/resources/views/web/faq.blade.php ENDPATH**/ ?>