Viewing file: e00d2c49c7d5cfb17d9e4f8c7fc65f70.php (4.28 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" type="image/x-icon" href="<?php echo e(asset('assets/images/'.$setting->favicon)); ?>"/>
<title><?php echo e($setting->title); ?></title>
<!-- Bootstrap -->
<link href="<?php echo e(asset('assets/front/css/bootstrap.min.css')); ?>" rel="stylesheet">
<link href="<?php echo e(asset('assets/front/css/fontawesome.min.css')); ?>" rel="stylesheet">
<link href="<?php echo e(asset('assets/front/css/magnific-popup.css')); ?>" rel="stylesheet">
<link href="<?php echo e(asset('assets/front/css/jquery-ui.css')); ?>" rel="stylesheet">
<link href="<?php echo e(asset('assets/front/css/animate.css')); ?>" rel="stylesheet">
<link href="<?php echo e(asset('assets/front/css/owl.carousel.min.css')); ?>" rel="stylesheet">
<?php echo $__env->yieldContent('css'); ?>
<!-- Main css -->
<link href="<?php echo e(asset('assets/front/css/main.css')); ?>" rel="stylesheet">
<style>
.mh-70 {
max-height: 50px;
margin: 20px 0px;
}
</style>
</head>
<body id="invoice-print" onload="window.print()" id="page-top">
<!-- Page Wrapper -->
<div id="wrapper">
<!-- Content Wrapper -->
<div id="content-wrapper" class="d-flex flex-column">
<!-- Main Content -->
<div id="content">
<?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" 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'): ?>
<span class="badge badge-success" style="padding:4px !important;border-radius:3px;">
<?php echo e(__('Paid')); ?>
</span>
<?php else: ?>
<span class="badge badge-danger" style="padding:4px !important;border-radius:3px;">
<?php echo e(__('Unpaid')); ?>
</span>
<?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>
<!-- End of Main Content -->
</div>
<!-- End of Content Wrapper -->
</div>
<!-- End of Page Wrapper -->
<!-- Scroll to Top Button-->
<a class="scroll-to-top rounded" href="#page-top">
<i class="fas fa-angle-up"></i>
</a>
</body>
</html>
<?php /**PATH D:\PicTech\unipin\unipin\core\resources\views/back/order/print.blade.php ENDPATH**/ ?>
|