Sindbad~EG File Manager
<?php $__env->startSection('content'); ?>
<!-- Cart Details -->
<section class="my-4" id="cart-details">
<?php echo $__env->make('frontend.partials.cart.cart_details', ['carts' => $carts], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</section>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('script'); ?>
<script type="text/javascript">
function removeFromCartView(e, key) {
e.preventDefault();
removeFromCart(key);
}
function updateQuantity(key, element) {
$.post('<?php echo e(route('cart.updateQuantity')); ?>', {
_token: AIZ.data.csrf,
id: key,
quantity: element.value
}, function(data) {
updateNavCart(data.nav_cart_view, data.cart_count);
$('#cart-details').html(data.cart_view);
AIZ.extra.plusMinus();
});
}
// Cart item selection
$(document).on("change", ".check-all", function() {
$('.check-one:checkbox').prop('checked', this.checked);
updateCartStatus();
});
$(document).on("change", ".check-seller", function() {
var value = this.value;
$('.check-one-'+value+':checkbox').prop('checked', this.checked);
updateCartStatus();
});
$(document).on("change", ".check-one[name='id[]']", function(e) {
e.preventDefault();
updateCartStatus();
});
function updateCartStatus() {
$('.aiz-refresh').addClass('active');
let product_id = [];
$(".check-one[name='id[]']:checked").each(function() {
product_id.push($(this).val());
});
$.post('<?php echo e(route('cart.updateCartStatus')); ?>', {
_token: AIZ.data.csrf,
product_id: product_id
}, function(data) {
$('#cart-details').html(data);
AIZ.extra.plusMinus();
$('.aiz-refresh').removeClass('active');
});
}
// coupon apply
$(document).on("click", "#coupon-apply", function() {
<?php if(Auth::check()): ?>
<?php if(Auth::user()->user_type != 'customer'): ?>
AIZ.plugins.notify('warning', "<?php echo e(translate('Please Login as a customer to apply coupon code.')); ?>");
return false;
<?php endif; ?>
var data = new FormData($('#apply-coupon-form')[0]);
$.ajax({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
method: "POST",
url: "<?php echo e(route('checkout.apply_coupon_code')); ?>",
data: data,
cache: false,
contentType: false,
processData: false,
success: function(data, textStatus, jqXHR) {
AIZ.plugins.notify(data.response_message.response, data.response_message.message);
$("#cart_summary").html(data.html);
}
});
<?php else: ?>
$('#login_modal').modal('show');
<?php endif; ?>
});
// coupon remove
$(document).on("click", "#coupon-remove", function() {
<?php if(Auth::check() && Auth::user()->user_type == 'customer'): ?>
var data = new FormData($('#remove-coupon-form')[0]);
$.ajax({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
method: "POST",
url: "<?php echo e(route('checkout.remove_coupon_code')); ?>",
data: data,
cache: false,
contentType: false,
processData: false,
success: function(data, textStatus, jqXHR) {
$("#cart_summary").html(data);
}
});
<?php endif; ?>
});
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('frontend.layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/zada/public_html/resources/views/frontend/view_cart.blade.php ENDPATH**/ ?>
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists