Edit File: 845e2523dd2b8bc633410f1d202a4ac1a3bdd6f0.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.image')); ?></th> <th><?php echo e(__('admin.address')); ?></th> <th><?php echo e(__('admin.control')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $howWorks; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $howWork): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr class="delete_howWork"> <td class="text-center"> <label class="container-checkbox"> <input type="checkbox" class="checkSingle" id="<?php echo e($howWork->id); ?>"> <span class="checkmark"></span> </label> </td> <td><img src="<?php echo e($howWork->image); ?>" width="50px" height="50px" alt=""></td> <td><?php echo e($howWork->title); ?></td> <td class="product-action"> <span class="text-primary"><a href="<?php echo e(route('admin.introhowworks.show' , ['id' => $howWork->id])); ?>"><i class="feather icon-eye"></i></a></span> <span class="action-edit text-primary"><a href="<?php echo e(route('admin.introhowworks.edit' , ['id' => $howWork->id])); ?>"><i class="feather icon-edit"></i></a></span> <span class="delete-row text-danger" data-url="<?php echo e(url('admin/introhowworks/'.$howWork->id)); ?>"><i class="feather icon-trash"></i></span> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php if($howWorks->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($howWorks->count() > 0 && $howWorks instanceof \Illuminate\Pagination\AbstractPaginator ): ?> <div class="d-flex justify-content-center mt-3"> <?php echo e($howWorks->links()); ?> </div> <?php endif; ?> <?php /**PATH /home/thunderw/public_html/resources/views/admin/introhowworks/table.blade.php ENDPATH**/ ?>
Back to File Manager