@extends('layouts.master') @section('css') @endsection @section('title') {{ __('roles.Viewـpermissions') }} @stop @section('page-header')
@endsection @section('content')
تفاصيل الصلاحيات المعينة
اسم الدور الوظيفي: {{ $role->name }}
إجمالي الصلاحيات: {{ count($rolePermissions ?? []) }}
@if (!empty($rolePermissions) && count($rolePermissions) > 0) @foreach ($rolePermissions as $v)
{{ app()->getLocale() == 'ar' ? $v->name_ar : $v->name }}
@endforeach @else
لا توجد أي صلاحيات ممنوحة لهذا الدور الوظيفي حتى الآن
@endif
@endsection @section('js') @endsection