{{-- resources/views/superadmin/roles/show.blade.php --}} @extends('layouts.superadmin') @section('title', 'تفاصيل الدور - ' . $role->name) @section('page-title', 'تفاصيل الدور') @section('content')

{{ $role->name == 'super-admin' ? 'الإدارة العليا' : ($role->name == 'advisor' ? 'مستشار التيم' : ($role->name == 'moderator' ? 'مشرف' : ($role->name == 'official-member' ? 'عضو رسمي' : ($role->name == 'member' ? 'عضو بيتا' : $role->display_name ?? $role->name)))) }}

{{ $role->name }}

@if($role->description)

{{ $role->description }}

@endif
@if($role->name !== 'super-admin') تعديل الدور @endif العودة للقائمة
{{ $stats['users_count'] }}
عدد المستخدمين
{{ $stats['created_days_ago'] }}
يوم منذ الإنشاء

المستخدمون بهذا الدور

@if($role->users->count() > 5) عرض الكل @endif
@if($role->users->count() > 0)
@foreach($role->users->take(10) as $user)
{{ $user->name }}

{{ $user->name }}

{{ $user->email }}

{{ $user->account_status === 'active' ? 'نشط' : 'معلق' }} عرض
@endforeach
@else

لا يوجد مستخدمون بهذا الدور

@endif
@if($role->name !== 'super-admin') @endif @endsection