Edit File: eb28ee135b00ae4e9ee79eb5db8c7d3beb7917f4.php
<div class="position-relative"> <div class="table_loader"> <?php echo e(__('admin.loading')); ?> </div> <table class="table " id="tab"> <thead> <tr> <th> # </th> <th><?php echo e(__('admin.image')); ?></th> <th><?php echo e(__('admin.name')); ?></th> <?php if($level != 2): ?> <th><?php echo e(is_null(request('id')) ? __('admin.view_sub_sections') : __('admin.classifications')); ?></th> <?php endif; ?> <th><?php echo e(__('admin.status')); ?></th> <th><?php echo e(__('admin.control')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $categories; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $category): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr class="delete_row"> <td class="text-center"> <?php echo e($loop->iteration); ?> </td> <td><img src="<?php echo e($category->image); ?>" width="50px" height="50px" alt=""></td> <td><?php echo e($category->name); ?></td> <?php if($level != 2): ?> <td><a href="<?php echo e(route('admin.categories.index', ['id' => $category->id])); ?>"><?php echo e(__('admin.view')); ?></a> </td> <?php endif; ?> <td> <span class="btn btn-sm round btn-outline-<?php echo e($category->status ? 'success' : 'danger'); ?> change-status" data-id="<?php echo e($category->id); ?>"> <?php echo e($category->status ? __('admin.active') : __('admin.dis_activate')); ?></span> </td> <td class="product-action"> <span class="text-primary"><a href="<?php echo e(route('admin.categories.show', ['id' => $category->id])); ?>"><i class="feather icon-eye"></i></a></span> <span class="action-edit text-primary"><a href="<?php echo e(route('admin.categories.edit', ['id' => $category->id])); ?>"><i class="feather icon-edit"></i></a></span> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php if($categories->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($categories->count() > 0 && $categories instanceof \Illuminate\Pagination\AbstractPaginator): ?> <div class="d-flex justify-content-center mt-3"> <?php echo e($categories->links()); ?> </div> <?php endif; ?> <?php /**PATH /home/thunderw/public_html/resources/views/admin/categories/table.blade.php ENDPATH**/ ?>
Back to File Manager