@extends('dashboard.index') @section('contentDashboard') @include('dashboard.page_header') @if ($message = Session::get('success'))

{{ $message }}

@endif @foreach ($roles as $key => $role) @endforeach
@lang('dashboard.title_number') @lang('dashboard.title_name') @lang('dashboard.title_action')
{{ ++$i }} {{ $role->name }} @can('role-edit') @endcan @can('role-delete') @include('dashboard.modal_delete') @endcan
{!! $roles->render() !!} @endsection