/
home
/
sjslayjy
/
public_html
/
theweavenest
/
storage
/
framework
/
views
/
Upload File
HOME
<?php $__env->startSection('page_title', 'product_cat'); ?> <?php $__env->startSection('content'); ?> <section class="page-header"> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="content"> <h1 class="page-name">Dashboard</h1> <ol class="breadcrumb"> <li><a href="<?php echo e(url('/')); ?>">Home</a></li> <li class="active">My Account</li> </ol> </div> </div> </div> </div> </section> <section class="user-dashboard page-wrapper"> <div class="container"> <div class="row"> <div class="col-md-12"> <ul class="list-inline dashboard-menu text-center"> <li><a href="<?php echo e(url('/')); ?>">Dashboard</a></li> <li><a class="active" href="<?php echo e(url('order')); ?>">Orders</a></li> </ul> <div class="dashboard-wrapper user-dashboard"> <div class="table-responsive"> <table class="table"> <thead> <tr> <th>Order Id</th> <th>Order Status</th> <th>Payment Status</th> <th>Total Amt</th> <th>Payment ID</th> <th>Placed At</th> <th>Action</th> </tr> </thead> <tbody> <?php $__currentLoopData = $orders; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $order): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td class="order_id_btn"><a href="<?php echo e(url('order_detail', $order->id)); ?>"><?php echo e($order->id); ?></a></td> <td><?php echo e($order->orders_status); ?></td> <td><?php echo e($order->payment_status); ?></td> <td><?php echo e($order->total_amt); ?></td> <td><?php echo e($order->payment_id); ?></td> <td><?php echo e($order->added_on); ?></td> <td><a href="<?php echo e(url('order_detail', $order->id)); ?>" class="btn btn-default">View</a></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> </div> </section> <?php $__env->stopSection(); ?> <?php echo $__env->make('front.layout_alt', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH C:\laravel_projecgts\ajay\resources\views/front/order.blade.php ENDPATH**/ ?>