Edit File: 9e807f9b28011bb50dbcf40d032d56df71b864c4.php
<div class="card store"> <div class="card-body"> <div class="position-relative"> <table class="table " id="tab"> <thead> <tr> <th><?php echo e(__('admin.date')); ?></th> <th><?php echo e(__('admin.name_to_complain')); ?></th> <th><?php echo e(__('admin.phone_to_complain')); ?></th> <th><?php echo e(__('admin.email_to_complain')); ?></th> <th><?php echo e(__('admin.control')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $complaints; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $complaint): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr class="delete_complaint"> <td><?php echo e(\Carbon\Carbon::parse($complaint->created_at)->format('d/m/Y')); ?></td> <td><?php echo e($complaint->user_name); ?></td> <td><?php echo e($complaint->phone); ?></td> <td><?php echo e($complaint->email); ?></td> <td class="product-action"> <span class="action-edit text-primary"><a href="<?php echo e(route('admin.complaints.show' , ['id' => $complaint->id])); ?>"><i class="feather icon-eye"></i></a></span> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php if($complaints->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($complaints->count() > 0 && $complaints instanceof \Illuminate\Pagination\AbstractPaginator ): ?> <div class="d-flex justify-content-center mt-3"> <?php echo e($complaints->links()); ?> </div> <?php endif; ?> </div> </div><?php /**PATH /home/thunderw/public_html/resources/views/admin/providers/parts/complaints.blade.php ENDPATH**/ ?>
Back to File Manager