![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/demo.cartinsight.co/storage/framework/views/ |
<?php $__env->startSection('content_header'); ?> <?php $__env->startComponent('components.content_header'); ?> <?php $__env->slot('page_title'); ?> <?php echo e($title_singular); ?> <?php $__env->endSlot(); ?> <?php $__env->slot('breadcrumb'); ?> <?php echo e(Breadcrumbs::render('wooCommerce_order_show')); ?> <?php $__env->endSlot(); ?> <?php echo $__env->renderComponent(); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="row"> <div class="col-md-8"> <?php $__env->startComponent('components.box', ['box_class'=>'box-primary']); ?> <?php $__env->slot('box_title'); ?> <?php echo app('translator')->get('WooCommerce::attributes.order.order_details'); ?> <?php $__env->endSlot(); ?> <div class="table-responsive"> <table class="table color-table info-table table table-hover table-striped table-condensed"> <thead> <tr> <th> <?php echo app('translator')->get('WooCommerce::attributes.order.integration_id'); ?> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order.customer'); ?> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order.total'); ?> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order.exchange_rate'); ?> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order.currency_total'); ?> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order.total_tax'); ?> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order.discount_total'); ?> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order.discount_tax'); ?> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order.shipping_total'); ?> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order.shipping_tax'); ?> </th> <th> <?php echo app('translator')->get('Corals::attributes.status'); ?> </th> </tr> </thead> <tbody> <tr> <td> <?php echo e($order->present('integration_id')); ?> </td> <td> <?php if($order->customer): ?> <a href="<?php echo e($order->customer->getShowURL()); ?>"> <?php echo e($order->present('customer')); ?> </a> <?php else: ?> - <?php endif; ?> </td> <td> <?php echo e($order->present('total')); ?> </td> <td> <?php echo e($order->present('exchange_rate')); ?> </td> <td> <?php echo e($order->present('currency_total')); ?> <?php echo e($order->present('currency')); ?> </td> <td> <?php echo e($order->present('total_tax')); ?> </td> <td> <?php echo e($order->present('discount_total')); ?> </td> <td> <?php echo e($order->present('discount_tax')); ?> </td> <td> <?php echo e($order->present('shipping_total')); ?> </td> <td> <?php echo e($order->present('shipping_tax')); ?> </td> <td> <?php echo $order->present('status'); ?> </td> </tr> </tbody> </table> </div> <div class="table-responsive"> <table class="table color-table info-table table table-hover table-striped table-condensed"> <thead> <tr> <th> <?php echo app('translator')->get('WooCommerce::attributes.order.date_created'); ?> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order.date_processing'); ?> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order.date_completed'); ?> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order.date_modified'); ?> </th> </tr> </thead> <tbody> <tr> <td> <?php echo e($order->present('date_created')); ?> </td> <td> <?php echo e($order->present('date_processing')); ?> </td> <td> <?php echo e($order->present('date_completed')); ?> </td> <td> <?php echo e($order->present('date_modified')); ?> </td> </tr> </tbody> </table> </div> <?php echo $__env->renderComponent(); ?> <?php $__env->startComponent('components.box', ['box_class'=>'box-success']); ?> <?php $__env->slot('box_title'); ?> <?php echo app('translator')->get('WooCommerce::attributes.order.orderItems'); ?> <?php $__env->endSlot(); ?> <?php if($items = $order->items): ?> <div class="table-responsive"> <table class="table color-table info-table table table-hover table-striped table-condensed"> <thead> <tr> <th> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order_item.name'); ?> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order_item.quantity'); ?> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order_item.price'); ?> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order_item.product_sku'); ?> </th> <th> <?php echo app('translator')->get('WooCommerce::attributes.order_item.variation_sku'); ?> </th> <th> <?php echo app('translator')->get("WooCommerce::attributes.order_item.brand"); ?> </th> </tr> </thead> <tbody> <?php $__currentLoopData = $order->items; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td> <?php if($item->variation): ?> <?php echo $item->variation->present('image'); ?> <?php elseif($item->product): ?> <?php echo $item->product->present('image'); ?> <?php endif; ?> </td> <td> <a href="<?php echo e($item->product->permalink); ?>" target="_blank"> <?php echo e($item->name); ?> </a> </td> <td> <?php echo e($item->quantity); ?> </td> <td> <?php echo e($item->price); ?> </td> <td> <?php if($item->product): ?> <a href="<?php echo e($item->product->getShowUrl()); ?>"> <?php echo e($item->product->sku); ?> </a> <?php else: ?> - <?php endif; ?> </td> <td> <?php if($item->variation): ?> <a href="<?php echo e($item->variation->getShowUrl()); ?>"> <?php echo e($item->variation->sku); ?> </a> <?php else: ?> - <?php endif; ?> </td> <td> <?php echo e(optional($item->product->brand)->name); ?> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <?php endif; ?> <?php echo $__env->renderComponent(); ?> </div> <div class="col-md-4"> <?php if($order->coupons->isNotEmpty()): ?> <?php $__env->startComponent('components.box', ['box_class'=>'box-primary']); ?> <?php $__env->slot('box_title'); ?> Coupons Details <?php $__env->endSlot(); ?> <table class="table table-striped"> <thead> <tr> <th>Code</th> <th>Discount</th> <th>Tax</th> </tr> </thead> <?php $__currentLoopData = $order->coupons; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $coupon): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($coupon->code); ?></td> <td><?php echo e($coupon->discount); ?></td> <td><?php echo e($coupon->discount_tax); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </table> <?php echo $__env->renderComponent(); ?> <?php endif; ?> <?php if($order->cancellation_details): ?> <?php $__env->startComponent('components.box', ['box_class'=>'box-info']); ?> <?php $__env->slot('box_title'); ?> Cancellation Details <?php $__env->endSlot(); ?> <?php echo formatProperties($order->cancellation_details); ?> <?php echo $__env->renderComponent(); ?> <?php endif; ?> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.crud.show', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/corals/demo.woobi.io/vendor/corals/woocommerce-reporting/src/WooCommerce/resources/views/orders/show.blade.php ENDPATH**/ ?>