Server IP : 66.29.132.124 / Your IP : 18.119.116.125 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/storage/framework/views/ |
Upload File : |
<?php $__env->startSection('content'); ?> <div class="container-fluid"> <div class="d-flex justify-content-between mb20"> <h1 class="title-bar"><?php echo e(__('Role')); ?></h1> <div class="title-actions"> <a href="<?php echo e(route('user.admin.role.verifyFields')); ?>" class="btn btn-warning"><i class="fa fa-check-circle-o"></i> <?php echo e(__('Verify Configs')); ?></a> <a href="<?php echo e(route('user.admin.role.permission_matrix')); ?>" class="btn btn-info"><?php echo e(__('Permission Matrix')); ?></a> <a href="<?php echo e(route('user.admin.role.create')); ?>" class="btn btn-primary"><?php echo e(__('Add new role')); ?></a> </div> </div> <?php echo $__env->make('admin.message', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <div class="panel"> <div class="panel-title"><?php echo e(__('All Roles')); ?></div> <div class="panel-body"> <table class="table table-hover"> <thead> <tr> <th width="60px"><input type="checkbox" class="check-all"></th> <th><?php echo e(__('Name')); ?></th> <th><?php echo e(__('Date')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $rows; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $row): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><input type="checkbox" name="ids[]" value="<?php echo e($row->id); ?>"></td> <td class="title"> <a href="<?php echo e(route('user.admin.role.detail',['id' => $row->id])); ?>"><?php echo e(ucfirst($row->name)); ?></a> </td> <td><?php echo e(display_date($row->updated_at)); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php echo e($rows->links()); ?> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('admin.layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/book24/public_html/modules/User/Views/admin/role/index.blade.php ENDPATH**/ ?>