관리-도구
편집 파일: cbe9201e86de511baa902cc105034b9611e7d88c.php
<?php $__env->startSection('content'); ?> <div class="row"> <div class="col-lg-12"> <div class="card no-export"> <div class="card-header d-flex align-items-center"> <span class="panel-title"><?php echo e(_lang('User Roles')); ?></span> <a class="btn btn-primary btn-xs ml-auto ajax-modal" data-title="<?php echo e(_lang('Create Role')); ?>" href="<?php echo e(route('roles.create')); ?>"><?php echo e(_lang('Add New')); ?></a> </div> <div class="card-body"> <table id="roles_table" class="table table-bordered data-table"> <thead> <tr> <th><?php echo e(_lang('Name')); ?></th> <th><?php echo e(_lang('Description')); ?></th> <th class="text-center"><?php echo e(_lang('Action')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $roles; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $role): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr data-id="row_<?php echo e($role->id); ?>"> <td class='name'><?php echo e($role->name); ?></td> <td class='description'><?php echo e($role->description); ?></td> <td class="text-center"> <div class="dropdown"> <button class="btn btn-light dropdown-toggle btn-xs" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <?php echo e(_lang('Action')); ?> <i class="fas fa-angle-down"></i> </button> <form action="<?php echo e(action('RoleController@destroy', $role['id'])); ?>" method="post"> <?php echo e(csrf_field()); ?> <input name="_method" type="hidden" value="DELETE"> <div class="dropdown-menu" aria-labelledby="dropdownMenuButton"> <a href="<?php echo e(action('RoleController@edit', $role['id'])); ?>" data-title="<?php echo e(_lang('Update Role')); ?>" class="dropdown-item ajax-modal"><i class="mdi mdi-pencil"></i> <?php echo e(_lang('Edit')); ?></a> <a href="<?php echo e(action('RoleController@show', $role['id'])); ?>" data-title="<?php echo e(_lang('View Role')); ?>" class="dropdown-item ajax-modal"><i class="mdi mdi-eye"></i> <?php echo e(_lang('View')); ?></a> <button class="btn-remove dropdown-item" type="submit"><i class="mdi mdi-delete"></i> <?php echo e(_lang('Delete')); ?></button> </div> </form> </div> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/eraas/public_html/resources/views/backend/user/role/list.blade.php ENDPATH**/ ?>