Edit File: ad7918326667708ab9f9732c905dd32799146b4f.php
<div class="position-relative"> <div class="table_loader"> <?php echo e(awtTrans('جاري التحميل')); ?> </div> <table class="table " id="tab"> <thead> <tr> <th></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><?php echo e($row->id); ?></td> <!--<td><img src="<?php echo e(asset('assets/uploads/users/'.$row->user->avatar)); ?>" width="50px" height="50px"--> <!-- alt=""></td>--> <td><?php echo e($row->user->name); ?></td> <td><?php echo e($row->user->phone); ?></td> <td class="accept_td text-center"> <?php if($row->status == 'pending'): ?> <i class="feather icon-check text-primary accept_company" style="font-size: 25px" data-status="approved" data-id="<?php echo e($row->id); ?>"></i> <i class="feather icon-x text-danger accept_company" style="font-size: 25px" data-status="rejected" data-id="<?php echo e($row->id); ?>"></i> <?php elseif($row->status == 'approved'): ?> <i class="fa fa-check text-success" style="font-size: 25px"></i> <?php else: ?> <i class="fa fa-times text-danger" style="font-size: 25px"></i> <?php endif; ?> </td> <td class="product-action"> <span class="text-primary"><a href="<?php echo e(route('admin.delegete_request.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 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 e($rows->links()); ?> </div> <?php endif; ?> <?php /**PATH /home/satransi/public_html/resources/views/admin/requests/table.blade.php ENDPATH**/ ?>
Back to File Manager