Viewing file: 11dc699be2e8035328993aee00296978.php (4.89 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('content'); ?>
<!-- Start of Main Content --> <div class="container-fluid">
<!-- Page Heading --> <div class="card mb-4"> <div class="card-body"> <div class="d-sm-flex align-items-center justify-content-between"> <h3 class=" mb-0"><?php echo e(__('Order Invoice')); ?> </h3> <div> <a class="btn btn-primary btn-sm" href="<?php echo e(route('back.order.index')); ?>"><i class="fas fa-chevron-left"></i> <?php echo e(__('Back')); ?></a> <a class="btn btn-primary btn-sm" href="<?php echo e(route('back.order.print',$order->id)); ?>" target="_blank"><i class="fas fa-print"></i> <?php echo e(__('print')); ?></a> </div> </div> </div> </div> <?php if($order->state){ $state = json_decode($order->state,true); }else{ $state = []; } ?>
<div class="row"> <div class="col-lg-12"> <div class="card"> <div class="card-body"> <div class="row"> <div class="col-12">
<!-- Logo --> <img class="img-fluid mb-5 mh-70" width="180" alt="Logo" src="<?php echo e(asset('assets/images/'.$setting->logo)); ?>">
</div> </div> <!-- / .row --> <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"> <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>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('master.back', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/game.picotech.app/public_html/core/resources/views/back/order/invoice.blade.php ENDPATH**/ ?>
|