Viewing file: 9929b28bbb62fc20571361584603dcea.php (5.95 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?> <?php echo e(__('Selling Orders')); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('styleplugins'); ?> <style> .section-order-info .text-muted{ color: rgb(255 255 255 / 88%) !important; font-weight: 500 !important; } .usr-info .text-muted{ color: rgb(255 255 255 / 88%) !important; font-weight: 500 !important; } </style> <?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<div class="container mt-5 mb-5"> <div class="row"> <div class="col-12"> <!-- Page Title--> <div class="page-title"> <div class="container"> <div class="row"> <div class="col-lg-12"> <ul class="breadcrumbs"> <li><a href="<?php echo e(route('front.index')); ?>"><?php echo e(__('Home')); ?></a></li> <li class="separator"></li> <li><?php echo e(__('Selling Orders')); ?></li> </ul> </div> </div> </div> </div> <!-- Page Content--> <div class="container-fluid padding-bottom-3x mb-1"> <div class="row"> <?php echo $__env->make('includes.user_sitebar', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <div class="col-lg-9 col-12 new_user_profile mt-3"> <div class="card"> <div class="card-body"> <div class="row">
<div class="col-6"> <h5><b><?php echo e(__('Order Details :')); ?></b></h5> <div class="section-order-info">
<div class="trx-section"> <span class="text-muted"><?php echo e(__('Transaction Id :')); ?></span><?php echo e($order->txn_id); ?><br> </div>
<div class="sec-itm"> <span class="text-muted"><?php echo e(__('Item :')); ?></span><b><?php echo e($order->item->name); ?></b><br> </div>
<span class="text-muted"><?php echo e(__('Order Total :')); ?></span><b><?php echo e(PriceHelper::grandCurrencyPrice($order->total_price)); ?></b> <br> <span class="text-muted"><?php echo e(__('Order Date :')); ?></span><?php echo e($order->created_at->format('M d, Y')); ?>
<br> <span class="text-muted"><?php echo e(__('Payment Status :')); ?></span>
<?php if($order->payment_status == 'paid'): ?> <div class="badge badge-success"> <?php echo e(__('Paid')); ?>
</div> <?php else: ?> <div class="badge badge-danger"> <?php echo e(__('Unpaid')); ?>
</div> <?php endif; ?> <br> <span class="text-muted"><?php echo e(__('Payment Method :')); ?></span><?php echo e($order->payment_method); ?>
<br> </div> </div>
<?php $user=$order->user; ?> <div class="col-12 col-md-6 usr-info"> <h5><b><?php echo e(__('User Information :')); ?></b></h5>
<span class="text-muted"><?php echo e(__('Name')); ?>: <?php echo e($user->displayName()); ?></span> <br> <span class="text-muted"><?php echo e(__('Email')); ?>: </span><?php echo e($user->email); ?><br> <span class="text-muted"><?php echo e(__('Phone')); ?>: </span><?php echo e($user->phone); ?><br>
</div>
</div> </div> </div>
</div> </div> </div> </div> </div> </div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('js'); ?>
<script> $(document).on('click', '.resellOrder', function (e){ e.preventDefault(); const order_id=$(this).attr('data-id');
$('.order_id').val(order_id)
$('#resellModal').modal('show');
}) </script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('master.front', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/game.picotech.app/public_html/core/resources/views/user/order/invoice.blade.php ENDPATH**/ ?>
|