Edit File: 273450f11093179f3f4bbcd7e9fc4a2dafec4488.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.title')); ?></th> <th><?php echo e(__('admin.content')); ?></th> <th><?php echo e(__('admin.control')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $pages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $pages): $__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($pages->id); ?>"> <span class="checkmark"></span> </label> </td> <td><?php echo e($pages->title); ?></td> <td><?php echo e(Str::limit($pages->content, 100)); ?></td> <td class="product-action"> <span class="text-primary"><a href="<?php echo e(route('admin.pages.show', ['id' => $pages->id])); ?>"><i class="feather icon-eye"></i></a></span> <span class="action-edit text-primary"><a href="<?php echo e(route('admin.pages.edit', ['id' => $pages->id])); ?>"><i class="feather icon-edit"></i></a></span> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php if($pages->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($pages->count() > 0 && $pages instanceof \Illuminate\Pagination\AbstractPaginator ): ?> <div class="d-flex justify-content-center mt-3"> <?php echo e($pages->links()); ?> </div> <?php endif; ?> <?php /**PATH /home/thunderw/public_html/resources/views/admin/pages/table.blade.php ENDPATH**/ ?>
Back to File Manager