@extends('layouts.master')
@section('title') {{__('role_management')}} @endsection
@section('content')
| {{__('no')}} |
{{__('name')}} |
{{__('action')}} |
@foreach ($roles as $key => $role)
| {{ ++$i }} |
{{ $role->name }} |
@can('role-edit')
@endcan
|
@endforeach
{!! $roles->render() !!}
@endsection