Edit File: 5a35b562369c947317b6a58332828eb227e2744f.php
<div class="position-relative"> <div class="table_loader"> <?php echo e(__('admin.loading')); ?> </div> <table class="table text-center" id="tab"> <thead> <tr> <th>#</th> <th><?php echo e(__('admin.order_num')); ?></th> <th><?php echo e(__('admin.created_at')); ?></th> <th><?php echo e(__('admin.final_total')); ?></th> <th><?php echo e(__('admin.admin_commission')); ?></th> <th><?php echo e(__('admin.provider_profit')); ?></th> <th><?php echo e(__('admin.delegate_profit')); ?></th> <th><?php echo e(__('admin.show')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $orders; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $order): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr class="delete_row"> <td class="text-center"><?php echo e($loop->iteration); ?></td> <td><?php echo e($order->order_num); ?></td> <td> <?php echo e($order->created_at->format('Y-m-d')); ?> </td> <td> <?php echo e($order->final_total . ' ' . __('site.currency')); ?> </td> <td> <?php echo e($order->admin_commission_value . ' ' . __('site.currency')); ?> </td> <td> <?php echo e($order->provider_due_amount . ' ' . __('site.currency')); ?> </td> <td> <?php echo e($order->delegate_due_amount . ' ' . __('site.currency')); ?> </td> <td class="product-action"> <span class="text-primary"> <a href="<?php echo e(route('admin.orders.show', ['id' => $order->id])); ?>"> <i class="feather icon-eye"></i> </a> </span> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php if($orders->count() == 0): ?> <div class="d-flex flex-column w-100 align-center mt-4"> <img src="<?php echo e(asset('admin/app-assets/images/pages/404.png')); ?>" alt=""> <span class="mt-2" style="font-family: cairo"><?php echo e(__('admin.there_are_no_matches_matching')); ?></span> </div> <?php endif; ?> </div> <?php if($orders->count() > 0 && $orders instanceof \Illuminate\Pagination\AbstractPaginator): ?> <div class="d-flex justify-content-center mt-3"> <?php echo e($orders->links()); ?> </div> <?php endif; ?> <?php /**PATH /home/thunderw/public_html/resources/views/admin/order_reports/table.blade.php ENDPATH**/ ?>
Back to File Manager