Viewing file: 7f0fc35476cd05603e2c05284f0f175f.php (2.66 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?>
<?php echo e(__('Orders')); ?>
<?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(__('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="u-table-res">
<table class="table table-bordered mb-0">
<thead>
<tr>
<th><?php echo e(__('Total')); ?></th>
<th><?php echo e(__('Order Status')); ?></th>
<th><?php echo e(__('Payment Status')); ?></th>
<th><?php echo e(__('Payment Method')); ?></th>
<th><?php echo e(__('Date Purchased')); ?></th>
<th><?php echo e(__('Transactions ID')); ?></th>
</tr>
</thead>
<tbody>
<?php $__currentLoopData = $orders; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $order): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td><?php echo e($order->total_price); ?></td>
<td><?php echo e($order->order_status); ?></td>
<td><?php echo e($order->payment_status); ?></td>
<td><?php echo e($order->payment_method); ?></td>
<td><?php echo e($order->created_at->format('D/M/Y')); ?></td>
<td><?php echo e($order->txn_id); ?></td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('master.front', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH D:\PicTech\unipin\unipin\core\resources\views/user/order/index.blade.php ENDPATH**/ ?>
|