@extends('admin::layouts.master') @section('content-header')

All Roles ({{ $roles->getTotal() }}) · {{ link_to_route('admin.roles.create', 'Add New') }}

@stop @section('content') @foreach ($roles as $role) @endforeach
No Name Alias Description Permissions Created At Action
{{ $no }} {{ $role->name }} {{ $role->slug }} {{ $role->description }} @foreach($role->permissions as $permission) • {{ $permission->name }}
@endforeach
{{ $role->created_at }} Edit · @include('admin::partials.modal', ['data' => $role, 'name' => 'roles'])
{{ pagination_links($roles) }}
@stop