Server : Apache System : Linux 145.162.205.92.host.secureserver.net 5.14.0-611.45.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 1 05:56:53 EDT 2026 x86_64 User : tradze ( 1001) PHP Version : 8.1.34 Disable Function : NONE Directory : /home/tradze/public_html/dev/storage/framework/views/ |
<?php if(!empty($cartCount) && $cartCount > 0){?>
<?php if(isset($cartContent)): ?>
<?php foreach($cartContent as $cart): ?>
<div class="product-item">
<div class="product-item-img">
<!-- <a href="<?php echo e(url('booking/basket/checkout')); ?>"> -->
<?php if(isset($cart->parent_icon)): ?>
<img src="<?php echo e(asset('/images').'/'.$cart->parent_icon); ?>"/>
<?php else: ?>
<img src="<?php echo e(asset('/themes/frontend_new/assets/img/product-img.jpg')); ?>"/>
<?php endif; ?>
<!-- </a> -->
</div>
<div class="product-item-dis">
<div class="dtleft">
<?php if(isset($cart->name)): ?>
<h4><?php echo e($cart->name); ?></h4>
<?php endif; ?>
<?php if(isset($cart->duration)): ?>
<p><?php echo e($cart->duration->duration); ?> min</p>
<?php endif; ?>
</div>
<div class="dtright row">
<div class="col-md-6">
<?php if(isset($cart->duration)): ?>
<span>£ <?php echo e($cart->duration->price); ?></span>
<?php endif; ?>
</div>
<div>
<button class="cancelbtn" cancleId="<?php echo e($cart->id); ?>"><i class="fa fa-close"></i></button>
</div>
</div>
</div>
</div>
<?php endforeach; ?>
<?php endif; ?>
<?php }else{
echo "No Item is added in cart";
}?>