shell bypass 403
<?php $__env->startSection('page_title'); ?>
| <?php echo e(trans('labels.my_cart')); ?>
<?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="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.cart')); ?></li>
</ol>
</nav>
</div>
</div>
</div>
<section class="my-4">
<div class="container">
<div class="cart-view">
<h3 class="fw-bold fs-2 mb-1 color-changer truncate-2"><?php echo e(trans('labels.cart')); ?></h3>
<p class="mb-3 color-changer">
<span class="fw-bold"><?php echo e($cartcount); ?> items</span> in your cart
</p>
<?php
$total_item_qty = 0;
$order_total = 0;
?>
<?php if(count($getcartlist) > 0): ?>
<?php if(@helper::checkaddons('cart_checkout_countdown')): ?>
<?php echo $__env->make('web.cart_checkout_countdown', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endif; ?>
<div class="card overflow-hidden border-bottom-0">
<div class="table-responsive cart-view">
<table class="table m-0 rounded-2 overflow-hidden" id="update_qty">
<thead>
<tr>
<th class="p-3 color-changer"><?php echo e(trans('labels.items')); ?></th>
<th class="p-3 color-changer"><?php echo e(trans('labels.price')); ?></th>
<th class="p-3 color-changer"><?php echo e(trans('labels.qty')); ?></th>
<th class="p-3 color-changer"><?php echo e(trans('labels.total')); ?></th>
<th class="p-3 color-changer"><?php echo e(trans('labels.action')); ?></th>
</tr>
</thead>
<tbody class="order-list">
<?php $__currentLoopData = $getcartlist; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr class="align-middle">
<td class="p-3">
<div class="tbl_cart_product gap-3">
<div class="item-img d-lg-block d-none">
<img src="<?php echo e(helper::image_path($item->item_image)); ?>"
alt="item-image">
</div>
<div class="row flex-column">
<div class="item-title mb-0">
<p class="text-dark color-changer text-capitalize m-0">
<?php echo e($item->item_name); ?>
</p>
</div>
<?php if($item->variation != '' || $item['extras_id'] != ''): ?>
<li class="m-0">
<span type="button" class="text-muted text-capitalize fs-7"
onclick="showaddons('<?php echo e($item['item_id']); ?>','<?php echo e($item['item_name']); ?>','<?php echo e($item['extras_name']); ?>','<?php echo e($item['extras_price']); ?>','<?php echo e($item['variation']); ?>','<?php echo e($item['variation_price']); ?>')">
<?php echo e(trans('labels.customize')); ?>
</span>
</li>
<?php endif; ?>
</div>
</div>
</td>
<?php if($item['extras_id'] != ''): ?>
<?php
$extras_id = explode('|', $item['extras_id']);
$extras_name = explode('|', $item['extras_name']);
$extras_price = explode('|', $item['extras_price']);
$extras_total_price = 0;
?>
<?php $__currentLoopData = $extras_id; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $addons): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php
$extras_total_price += $extras_price[$key];
?>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php else: ?>
<?php
$extras_total_price = 0;
?>
<?php endif; ?>
<td class="p-3">
<p
class="item-price color-changer <?php echo e(session()->get('direction') == '2' ? 'text-end' : 'text-start'); ?>">
<?php echo e(helper::currency_format($item['item_price'] + $extras_total_price)); ?>
</p>
</td>
<td class="p-3">
<?php
$total_price =
($item['item_price'] + $extras_total_price) * $item['qty'];
$order_total += (float) $total_price;
$total_item_qty += $item['qty'];
?>
<div class="item-quantity">
<button class="btn btn-sm item-quantity-minus mb-0 item_quantity"
onclick="qtyupdate('<?php echo e($item['id']); ?>','minus','<?php echo e(URL::to('/cart/qtyupdate')); ?>')">
<i class="fa-solid fa-minus fs-10 color-changer"></i>
</button>
<input class="item-quantity-input color-changer mb-0" name="number"
value="<?php echo e($item['qty']); ?>" id="item_qty_<?php echo e($item['id']); ?>"
readonly>
<button class="btn btn-sm item-quantity-plus mb-0 item_quantity"
onclick="qtyupdate('<?php echo e($item['id']); ?>','plus','<?php echo e(URL::to('/cart/qtyupdate')); ?>')">
<i class="fa-solid fa-plus fs-10 color-changer"></i>
</button>
</div>
</td>
<td class="p-3">
<p class="fs-15 color-changer"><?php echo e(helper::currency_format($total_price)); ?></p>
</td>
<td class="p-3">
<button href="javascript:void(0)"
onclick="deletecartitem('<?php echo e($item['id']); ?>','<?php echo e(URL::to('/cart/deleteitem')); ?> ') "
class="btn delete-icon" tooltip="Remove">
<i class="fa-solid fa-trash-can text-light"></i>
</button>
</td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</tbody>
</table>
</div>
</div>
<p class="text-muted text-end fs-7 line-2 mt-2"><?php echo e(trans('labels.cart_text_message')); ?></p>
<?php if(@helper::checkaddons('cart_checkout_progressbar')): ?>
<?php echo $__env->make('web.cart_checkout_progressbar', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endif; ?>
<div class="row g-3 justify-content-between mb-xl-0 mb-3">
<div class="col-lg-3 col-md-4 col-sm-6">
<a href="<?php echo e(route('home')); ?>" type="button"
class="btn fs-15 fw-500 btn-outline-primary w-100">
<i
class="fa-light <?php echo e(session('direction') == 2 ? 'fa-arrow-right-long' : 'fa-arrow-left-long'); ?> fw-600"></i>
<span class="fw-600 px-1"><?php echo e(trans('labels.return_to_shop')); ?></span>
</a>
</div>
<div class="col-lg-3 col-md-4 col-sm-6">
<button
class="btn btn-primary px-sm-4 fs-15 w-100 d-flex gap-3 justify-content-center align-items-center cart_checkout"
onclick="isopenclose('<?php echo e(URL::to('/isopenclose')); ?>','<?php echo e($total_item_qty); ?>','<?php echo e($order_total); ?>')">
<span class="fw-600 px-1"><?php echo e(trans('labels.continue')); ?></span>
<i
class="fa-light <?php echo e(session('direction') == 2 ? 'fa-arrow-left-long' : 'fa-arrow-right-long'); ?> fw-600"></i>
<div class="loader d-none cart_checkout_loader"></div>
</button>
</div>
</div>
<?php else: ?>
<?php echo $__env->make('web.nodata', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php endif; ?>
</div>
</div>
</section>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('scripts'); ?>
<script src="<?php echo e(url(env('ASSETSPATHURL') . 'web-assets/js/custom/cart.js')); ?>"></script>
<?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/cart/cart.blade.php ENDPATH**/ ?>