Edit File: 6e52d1fa1336e44f8b670681e1c7ff9a2b13dc92.php
<div class="position-relative"> <div class="table_loader" > <?php echo e(awtTrans('جاري التحميل')); ?> </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(awtTrans('رقم الطلب')); ?></th> <th><?php echo e(awtTrans('التاريخ')); ?></th> <th><?php echo e(awtTrans('اسم صاحب الطلب')); ?></th> <!--<th><?php echo e(awtTrans('نوع الطلب')); ?></th>--> <th><?php echo e(awtTrans('السعر الاجمالي')); ?></th> <th><?php echo e(awtTrans('التحكم')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $rows; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $row): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr class="delete_row "> <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->id); ?></td> <td><?php echo e(\Carbon\Carbon::parse($row->created_at)->format('d/m/Y')); ?></td> <td><?php echo e($row->user_id? $row->user->name : $row->delegate->name); ?></td> <!--<td class="accept_td">--> <!-- <?php if($row->type == 'special_stores'): ?>--> <!-- <?php echo e(awtTrans('متجر متعاقد')); ?>--> <!-- <?php elseif($row->type == 'google_places'): ?>--> <!-- <?php echo e(awtTrans('متجر غير متعاقد')); ?>--> <!-- <?php elseif($row->type == 'parcel_delivery'): ?>--> <!-- <?php echo e(awtTrans('توصيل طرد')); ?>--> <!-- <?php elseif($row->type == 'special_request'): ?>--> <!-- <?php echo e(awtTrans('طلب خاص')); ?>--> <!-- <?php endif; ?>--> <!--</td>--> <td><?php echo e($row->total_price); ?></td> <td class="product-action"> <span class="text-primary"><a href="<?php echo e(route('admin.orders.show', ['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="http://127.0.0.1:8000/admin/app-assets/images/pages/404.png" alt=""> <span class="mt-2" style="font-family: cairo"><?php echo e(awtTrans('لا يوجد نتائج مطابقة')); ?></span> </div> <?php endif; ?> </div> <?php if($rows->count() > 0 && $rows instanceof \Illuminate\Pagination\AbstractPaginator ): ?> <div class="dataTables_info" id="DataTables_Table_0_info" role="status" aria-live="polite"><?php echo e(trans( 'pagination.showing') . $rows->firstItem() . trans('pagination.to') . $rows->lastItem() . trans('pagination.of') . $rows->total() . trans('pagination.entries')); ?> </div> <div class="d-flex justify-content-center mt-3"> <?php echo $rows->links(); ?> </div> <?php endif; ?> <?php /**PATH /home/satransi/public_html/resources/views/admin/orders/table.blade.php ENDPATH**/ ?>
Back to File Manager