Edit File: 0685c7a99b11cdf0b8848783fa11b6eac6601b72.php
<div class="position-relative"> <div class="table_loader"> <?php echo e(__('admin.loading')); ?> </div> <table class="table " id="tab"> <thead> <tr> <th> <label class="container-checkbox"> <input type="checkbox" value="value1" name="name1" id="checkedAll"> <span class="checkmark"></span> </label> </th> <th><?php echo e(__('admin.order_num')); ?></th> <th><?php echo e(__('admin.store_name')); ?></th> <th><?php echo e(__('admin.user_name')); ?></th> <th><?php echo e(__('admin.status')); ?></th> <th><?php echo e(__('admin.delivery_date')); ?></th> <th><?php echo e(__('admin.time')); ?></th> <th><?php echo e(__('admin.control')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $rows; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $row): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr class="delete_city"> <td class="text-center"> <label class="container-checkbox"> <input type="checkbox" class="checkSingle" id="<?php echo e($row->id); ?>"> <span class="checkmark"></span> </label> </td> <td><?php echo e($row->order_num); ?></td> <td><?php echo e($row->provider?->store_name); ?></td> <td><?php echo e($row->user?->name); ?></td> <td><?php echo e($row->status['text']); ?></td> <td> <?php echo e($row->order_type == App\Enums\OrderWhenEnum::IMMEDIATELY->value ? \Carbon\Carbon::parse($row->created_at)->format('Y-m-d') : $row->schedule_execution_date); ?> </td> <td> <?php echo e($row->order_type == App\Enums\OrderWhenEnum::IMMEDIATELY->value ? \Carbon\Carbon::parse($row->created_at)->format('h:i A') : \Carbon\Carbon::parse($row->schedule_execution_time)->format('h:i A')); ?> </td> <td class="product-action"> <span class="text-primary"><a href="<?php echo e(route('admin.assign_delegate_orders.details', ['id' => $row->id])); ?>"><i class="feather icon-eye"></i></a></span> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php if($rows->count() == 0): ?> <div class="d-flex flex-column w-100 align-center mt-4"> <img src="<?php echo e(asset('/storage/images/no_data.png')); ?>" width="200px" style="" alt=""> <span class="mt-2" style="font-family: cairo ;margin-right: 35px"><?php echo e(__('admin.there_are_no_matches_matching')); ?></span> </div> <?php endif; ?> </div> <?php if($rows->count() > 0 && $rows instanceof \Illuminate\Pagination\AbstractPaginator): ?> <div class="d-flex justify-content-center mt-3"> <?php echo e($rows->links()); ?> </div> <?php endif; ?> <?php /**PATH /home/thunderw/public_html/resources/views/admin/assign_delegate_orders/table.blade.php ENDPATH**/ ?>
Back to File Manager