Edit File: 1a43c2aa952855538c9e81fe32b7775661ad8868.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> <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(\Carbon\Carbon::parse($row->created_at)->format('d/m/Y')); ?></td> <td><img src="<?php echo e($row->avatarPath); ?>" width="50px" height="50px" alt=""></td> <td><?php echo e($row->name); ?></td> <td><?php echo e($row->email); ?></td> <td><?php echo e($row->phone); ?></td> <td> <?php if($row->status !== 'block'): ?> <?php if($row->status=='active'): ?> <span class="btn btn-sm round btn-outline-success"> <?php echo e(awtTrans('مفعل')); ?> <i class="la la-close font-medium-2"></i> </span> <?php elseif($row->status=='pending'): ?> <span class="btn btn-sm round btn-outline-primary"> <?php echo e(awtTrans('فى انتظار التفعيل')); ?> <i class="la la-close font-medium-2"></i> </span> <?php else: ?> <span class="btn btn-sm round btn-outline-danger"> <?php echo e(awtTrans('غير مفعل')); ?> <i class="la la-check font-medium-2"></i> </span> <?php endif; ?> <?php else: ?> <span class="btn btn-sm round btn-outline-danger"> <?php echo e(awtTrans('محظور')); ?> <i class="la la-check font-medium-2"></i> </span> <?php endif; ?> </td> <td> <a href="<?php echo e(route('admin.clients.address', ['id' => $row->id])); ?>"><i class="feather icon-eye"></i></a> <td class="product-action"> <span class="text-primary"><a href="<?php echo e(route('admin.clients.show', ['id' => $row->id])); ?>"><i class="feather icon-eye"></i></a></span> <span class="action-edit text-primary"><a href="<?php echo e(route('admin.clients.edit', ['id' => $row->id])); ?>"><i class="feather icon-edit"></i></a></span> <span data-toggle="modal" data-target="#notify" class="text-info notify" data-id="<?php echo e($row->id); ?>" data-url="<?php echo e(url('admins/clients/notify')); ?>"><i class="feather icon-bell"></i></span> <span data-toggle="modal" data-target="#mail" class="text-info mail" data-id="<?php echo e($row->id); ?>" data-url="<?php echo e(url('admins/clients/notify')); ?>"><i class="feather icon-mail"></i></span> <span class="delete-row text-danger" data-url="<?php echo e(url('admin/clients/' . $row->id)); ?>"><i class="feather icon-trash"></i></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="d-flex justify-content-center mt-3"> <?php echo e($rows->links()); ?> </div> <?php endif; ?> <?php /**PATH /home/wwineerc/public_html/resources/views/admin/clients/active_table.blade.php ENDPATH**/ ?>
Back to File Manager