Viewing file: 4d28540d20e0941a9cb5edfd5dbb356f.php (3.4 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 text-center">
<!-- 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-12">
<h5><b><?php echo e(__('Order Details :')); ?></b></h5>
<span class="text-muted"><?php echo e(__('Transaction Id :')); ?></span><?php echo e($order->txn_id); ?><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>
<br>
<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 D:\PicTech\unipin\unipin\core\resources\views/back/order/invoice.blade.php ENDPATH**/ ?>
|