

<?php $__env->startSection('content'); ?>

<div class="col-lg-12 grid-margin stretch-card">
    <div class="card">
        <div class="card-body">
            <h4 class="card-title">Roles table</h4>
            <p class="card-description"><a href="<?php echo e(route('admin.roles.create')); ?>"><code>Add Role</code></a>
            </p>

            <div class="table-responsive pt-3">
                <table id="rolesTable" class="table table-bordered">
                    <thead>
                        <tr>
                            <th>Role Name</th>
                           <th>Permissions</th>
                           <th>Actions</th>
                        </tr> 
                    </thead>
                    <tbody>

                    </tbody>
                </table>
            </div>
        </div>
    </div>
</div>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('admin.layouts.app', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /var/www/html/resources/views/admin/role/role.blade.php ENDPATH**/ ?>