@extends('backend.layouts.app')
@section('page-title', trans('app.roles'))
@section('page-heading', trans('app.roles'))
@section('breadcrumbs')
@lang('app.roles')
@stop
@section('content')
@include('backend.partials.messages')
@lang('app.slug') |
@lang('app.name') |
@lang('app.level') |
@lang('app.users_with_this_role') |
@lang('app.action') |
@if (count($roles))
@foreach ($roles as $role)
{{ $role->slug }} |
{{ $role->name }} |
{{ $role->level }} |
{{ $role->users_count }} |
|
@endforeach
@else
@lang('app.no_records_found') |
@endif
@stop