Server : Apache System : Linux host44.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 User : vapecompany ( 2719) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/vapecompany/demo.vapecompany.com.bd/storage/framework/views/ |
Upload File : |
<?php $__env->startSection('css'); ?> <link rel="stylesheet" type="text/css" href="<?php echo e(url('public/frontend/styles/cart_styles.css')); ?>"> <link rel="stylesheet" type="text/css" href="<?php echo e(url('public/frontend/styles/cart_responsive.css')); ?>"> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <!-- Cart --> <div class="container cart-container"> <div class="card cart_card"> <div class="row row-mar"> <div class="col-md-8 cart_page"> <div class="title cart_title"> <div class="row row-mar"> <div class="col"> <h4><b>Shopping Cart</b></h4> </div> <div class="col align-self-center text-right text-muted"><?php echo e($cartQty); ?> items</div> </div> </div> <?php $__currentLoopData = $cart; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $details): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="row row-mar border-top border-bottom"> <div class="row row-mar main align-items-center"> <div class="col-2"><img style="height:50px;width:100%;" class="img-fluid" src="<?php echo e(url('public/images/product/'.$details->options->image)); ?>"></div> <div class="col"> <div class="row row-mar text-muted"><?php echo e($details->name); ?></div> <!-- <div class="row row-mar">Cotton T-shirt</div> --> </div> <div class="col"> <a href="" id="cartDecrement" data-id="<?php echo e($details->rowId); ?>" class="count">-</a><a href="#" class="count"><?php echo e($details->qty); ?></a><a id="cartIncrement" data-id="<?php echo e($details->rowId); ?>" href="#" class="count">+</a> </div> <div class="col">€ <?php echo e($details->subtotal); ?> <span class="close" style="font-size: 20px"> <a href="" id="cartRemove" data-id="<?php echo e($details->rowId); ?>">✕</a> </span></div> </div> <hr> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <div class="back-to-shop"><a href="<?php echo e(url('shop')); ?>">← <span class="text-muted">Back to shop</span></a></div> </div> <div class="col-md-4 summary"> <div> <h5 class="h5summary"><b>Summary</b></h5> </div> <hr> <div class="row row-mar"> <div class="col" style="padding-left:0;">ITEMS <?php echo e($cartQty); ?></div> <div class="col text-right">€ <?php echo e($cartTotal); ?></div> </div> <form class="cart-form"> <p>SHIPPING</p> <select class="cart-select"> <option class="text-muted">Standard-Delivery- €5.00</option> </select> <p>GIVE CODE</p> <input id="code" class="cart-input" placeholder="Enter your code"> </form> <div class="row row-mar" style="border-top: 1px solid rgba(0,0,0,.1); padding: 2vh 0;"> <div class="col">TOTAL PRICE</div> <div class="col text-right">€ <?php echo e($cartTotal); ?></div> </div> <a href="<?php echo e(url('checkout')); ?>" class="chekoutbtn" style="display: block; text-align: center">CHECKOUT</a> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('js'); ?> <script src="<?php echo e(url('public/frontend/plugins/slick-1.8.0/slick.js')); ?>"></script> <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&key=AIzaSyCIwF204lFZg1y4kPSIhKaHEXMLYxxuMhA"></script> <script src="<?php echo e(url('public/frontend/js/custom.js')); ?>"></script> <script> $(document).on("click","a#cartRemove",function(e) { e.preventDefault(); var id = $(this).data('id'); $.ajax({ type: "POST", url: "<?php echo e(route('remove.cart')); ?>", data: { id : id, }, dataType: "json", success: function (response) { window.location.reload(); Swal.fire({ toast: true, position: 'top-end', icon: 'success', title: 'Product removed successfull', showConfirmButton: false, timer: 3000 }) }, error: function (error) { Swal.fire({ toast: true, position: 'top-end', icon: 'error', title: 'Product removed failed', showConfirmButton: false, timer: 3000 }) } }); }); // cart increment $('#cartIncrement').click(function (e) { e.preventDefault(); var id = $(this).data('id'); $.ajax({ type: "POST", url: "<?php echo e(route('cart.increment')); ?>", data: { id : id, }, dataType: "json", success: function (response) { window.location.reload(); } }); }); // cart increment $('#cartDecrement').click(function (e) { e.preventDefault(); var id = $(this).data('id'); $.ajax({ type: "POST", url: "<?php echo e(route('cart.decrement')); ?>", data: { id : id, }, dataType: "json", success: function (response) { window.location.reload(); } }); }); </script> <?php $__env->stopSection(); ?> <?php echo $__env->make('frontend.layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/vapecompany/Demo.vapecompany.com.bd/resources/views/frontend/pages/cart.blade.php ENDPATH**/ ?>