ヤミRoot VoidGate
User / IP
:
216.73.217.162
Host / Server
:
15.235.182.215 / pollibazaar.com
System
:
Linux asia.cbnex.com 5.14.0-611.49.2.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Apr 30 09:05:08 EDT 2026 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
pollibazaar
/
public_html
/
storage
/
framework
/
views
/
Viewing: 7ff85eba8d7f952f81d6df3fce30bcd8.php
<div> <h3 class="mb-4 view-mail-title text-capitalize"> <?php echo e($title); ?> </h3> <div class="view-mail-body"> <?php echo $body; ?> </div> <div class="main-table-inner mb-4"> <div class="d-flex justify-content-center pt-3"> <img width="76" class="mb-4" id="view-mail-logo" src="<?php echo e($template->image_full_url['path'] ?? getStorageImages(path: $companyLogo, type:'backend-logo')); ?>" alt=""> </div> <h3 class="mb-3 text-center"><?php echo e(translate('order_Info')); ?></h3> <div class="main-table-inner p-3 bg-white"> <div class="d-flex mb-3 p-2"> <div class="flex-1 w-49"> <h3 class="mb-2"><?php echo e(translate('order_Summary')); ?></h3> <div class="mb-2"><?php echo e(translate('Order').' # '.($data['order']->id ?? '432121')); ?> </div> <div><?php echo e(date('d M, Y : h:i:A' ,strtotime($data['order']->created_at ?? now()))); ?></div> </div> </div> <div class="<?php echo e($template['order_information_status'] == 1 ? '' : 'd-none'); ?>" id="order-information"> <table class="email-table table table-borderless"> <thead> <tr> <th class="text-left"><?php echo e(translate('product')); ?></th> <th class="text-end"><?php echo e(translate('price')); ?></th> </tr> </thead> <tbody> <?php if(isset($data['order'])): ?> <?php $itemPrice=0; $totalPrice=0; $subtotal=0; $total=0; $shipping=0; $discount=0; $tax=0; $row=0; $finalAmount = 0; ?> <?php $__currentLoopData = $data['order']->details; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key=>$detail): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php ($productDetails = $detail?->productAllStatus ?? json_decode($detail->product_details) ); ?> <tr> <td> <div class="d-flex gap-2"> <span class="text-nowrap"><?php echo e(++$row.'.'); ?> </span> <span><?php echo e($productDetails->name.' x '.$detail['qty']); ?></span> </div> </td> <td class="text-end fw-bold"><?php echo e(webCurrencyConverter(amount: ($detail['price']*$detail['qty']))); ?></td> </tr> <?php ($itemPrice+=$detail['price']*$detail['qty']); ?> <?php ($subtotal=$detail['price']*$detail['qty']-$detail['discount']); ?> <?php ($discount+=$detail['discount']); ?> <?php ($tax+=$detail['tax']); ?> <?php ($total+=$subtotal); ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php ($shipping=$data['order']['shipping_cost']); ?> <?php ($couponDiscount = $data['order']['discount_amount']); ?> <?php ($deliveryFeeDiscount = 0); ?> <?php if($data['order']['is_shipping_free']): ?> <?php ($deliveryFeeDiscount = $shipping); ?> <?php endif; ?> <?php ($finalAmount = $total+$tax+$shipping-$couponDiscount-$deliveryFeeDiscount); ?> <?php else: ?> <tr> <td> <div class="d-flex gap-2 text-wrap"> <span><?php echo e(translate('1').'.'); ?> </span> <span><?php echo e(translate('The school of life - emotional baggage tote bag - canvas tote bag (navy) x 1')); ?></span> </div> </td> <td class="text-end fw-bold"><?php echo e(setCurrencySymbol(amount: usdToDefaultCurrency(amount: 500), currencyCode: getCurrencyCode())); ?></td> </tr> <?php endif; ?> </tbody> </table> <hr> <dl class="email-dl"> <dt class="flex-1"><?php echo e(translate('item_price')); ?></dt> <dd class="flex-1 text-end"> <?php echo e(isset($itemPrice) ? webCurrencyConverter(amount: $itemPrice) :setCurrencySymbol(amount: usdToDefaultCurrency(amount: 500), currencyCode: getCurrencyCode())); ?> </dd> <dt class="flex-1"><?php echo e(translate('item_discount')); ?></dt> <dd class="flex-1 text-end"> - <?php echo e(isset($discount) ? webCurrencyConverter(amount: $discount) :setCurrencySymbol(amount: usdToDefaultCurrency(amount: 50), currencyCode: getCurrencyCode())); ?> </dd> <dt class="flex-1"><?php echo e(translate('sub_total')); ?></dt> <dd class="flex-1 text-end"> <?php echo e(isset($total) ? webCurrencyConverter(amount: $total) :setCurrencySymbol(amount: usdToDefaultCurrency(amount: 450), currencyCode: getCurrencyCode())); ?> </dd> <dt class="flex-1"> <?php echo e(translate('coupon_discount')); ?> </dt> <dd class="flex-1 text-end"> - <?php echo e(isset($couponDiscount) ? webCurrencyConverter(amount: $couponDiscount) :setCurrencySymbol(amount: usdToDefaultCurrency(amount: 0), currencyCode: getCurrencyCode())); ?> </dd> <dt class="flex-1"><?php echo e(translate('vat/Tax')); ?></dt> <dd class="flex-1 text-end"> <?php echo e(isset($tax) ? webCurrencyConverter(amount: $tax) :setCurrencySymbol(amount: usdToDefaultCurrency(amount: 25), currencyCode: getCurrencyCode())); ?> </dd> <dt class="flex-1"> <?php echo e(translate('delivery_fee')); ?> </dt> <dd class="flex-1 text-end"> <?php echo e(isset($shipping) ? webCurrencyConverter(amount: $shipping-$deliveryFeeDiscount) :setCurrencySymbol(amount: usdToDefaultCurrency(amount: 0), currencyCode: getCurrencyCode())); ?> </dd> <dt class="flex-1 fw-bold"><?php echo e(translate('Total')); ?></dt> <dd class="flex-1 text-end text-success fw-bold fs"> <?php echo e(isset($finalAmount) ? webCurrencyConverter(amount: $finalAmount) :setCurrencySymbol(amount: usdToDefaultCurrency(amount: 475), currencyCode: getCurrencyCode())); ?> </dd> </dl> </div> <hr> <p class="view-footer-text"> <?php echo e($footerText); ?> </p> <p><?php echo e(translate('Thanks_&_Regards')); ?>, <br> <?php echo e(getWebConfig(name: 'company_name')); ?></p> </div> </div> <?php echo $__env->make('admin-views.business-settings.email-template.partials-design.footer-design-without-logo', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?> </div> <?php /**PATH /home/pollibazaar/public_html/resources/views/admin-views/business-settings/email-template/admin-mail-template/order-received.blade.php ENDPATH**/ ?>
Coded With 💗 by
0x6ick