관리-도구
편집 파일: 2e7eb767d17d36cac026fe68f986a20c0993a9ca.php
<?php $__env->startSection('content'); ?> <!-- Breadcrumbs --> <div class="breadcrumbs"> <div class="container"> <div class="row"> <div class="col-12"> <div class="bread-inner"> <ul class="bread-list"> <li><a href="<?php echo e(url('')); ?>"><?php echo e(_lang('Home')); ?><i class="ti-arrow-right"></i></a></li> <li class="active"><a href=""><?php echo e(_lang('My Orders')); ?></a></li> </ul> </div> </div> </div> </div> </div> <!-- End Breadcrumbs --> <!-- Login Screen --> <section id="auth"> <div class="container"> <div class="row"> <div class="col-lg-3 col-md-4"> <div class="customer_dashboard"> <?php echo $__env->make('theme.default.customer.my_account.menu', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> </div> </div> <div class="col-lg-9 col-md-8"> <?php if(\Session::has('success')): ?> <div class="alert alert-success mt-4"> <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a> <span><?php echo xss_clean(session('success')); ?></span> </div> <?php endif; ?> <?php if(\Session::has('error')): ?> <div class="alert alert-danger mt-4"> <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a> <span><?php echo xss_clean(session('error')); ?></span> </div> <?php endif; ?> <div class="dashboard_content"> <div class="card"> <div class="card-header"> <h4><?php echo e(_lang('My Orders')); ?></h4> </div> <div class="card-body"> <div class="table-responsive"> <table class="table table-bordered"> <thead> <th><?php echo e(_lang('Order ID')); ?></th> <th><?php echo e(_lang('Date')); ?></th> <th><?php echo e(_lang('Total')); ?></th> <th><?php echo e(_lang('Order Status')); ?></th> <th><?php echo e(_lang('Payment Status')); ?></th> <th class="text-center"><?php echo e(_lang('Action')); ?></th> </thead> <tbody> <?php if($orders->count() == 0): ?> <tr> <td colspan="6" class="text-center"><?php echo e(_lang('No Order found !')); ?></td> </tr> <?php endif; ?> <?php $__currentLoopData = $orders; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $order): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($order->id); ?></td> <td><?php echo e($order->created_at); ?></td> <td><?php echo xss_clean(decimalPlace($order->total,$order->currency)); ?></td> <td><?php echo xss_clean($order->getStatus()); ?></td> <td><?php echo xss_clean($order->getPaymentStatus()); ?></td> <td class="text-center"> <a href="<?php echo e(url('/order_details/'.encrypt($order->id))); ?>" class="btn-link"><?php echo e(_lang('View Details')); ?></a> <?php if($order->status == $order::PENDING_PAYMENT): ?> | <a href="<?php echo e(url('/payment/'.encrypt($order->id))); ?>" class="btn-link"><?php echo e(_lang('Pay Now')); ?></a> <?php endif; ?> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php echo e($orders->links()); ?> </div> </div> </div> </div> </div> </div> </div> </section> <!--/ End Login Screen --> <?php $__env->stopSection(); ?> <?php echo $__env->make('theme.saintsaccessories.websiteEcom', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/customdevdevopdi/findjobs.customdev.devopdigital.com/resources/views/theme/saintsaccessories/customer/my_account/orders.blade.php ENDPATH**/ ?>