@extends('admin.layouts.app') @section('title', 'الرئيسية') @section('page-title', 'الرئيسية') @section('page-description', 'ملخص سريع للوصول المباشر إلى أهم الأقسام.') @section('content')
البداية

لوحة العمل الرئيسية

اختر القسم المطلوب وادخل مباشرة.

الطلاب المسجلون {{ number_format($counts['registered_students']) }}
الممثلون {{ number_format($counts['representatives']) }}
المسموح لهم {{ number_format($counts['allowed_students']) }}
الأقسام {{ number_format($counts['departments']) }}
المحافظات

{{ number_format($counts['governorates']) }} محافظة

عدد المحافظات المعرفة داخل النظام.

الجامعات

{{ number_format($counts['universities']) }} جامعة

الجامعات المرتبطة بالمحافظات.

الكليات

{{ number_format($counts['colleges']) }} كلية

جاهزة للربط مع الأقسام والطلاب.

القبول

آخر الطلاب المسموح لهم

آخر الأرقام وحالة الربط.

@forelse ($recentAllowedStudents as $allowedStudent)
{{ $allowedStudent->phone }}
@if ($allowedStudent->loginStudent) مرتبط بالحساب: {{ $allowedStudent->loginStudent->username }} @else بانتظار إنشاء حساب تسجيل دخول @endif
@empty
لا توجد بيانات بعد.
@endforelse
الحسابات

آخر الحسابات المسجلة

أحدث الحسابات داخل النظام.

@forelse ($recentStudents as $student) @empty @endforelse
الاسم الدور الهاتف القسم
{{ $student->username }} {{ $student->role }} {{ $student->allowedStudent?->phone ?? 'غير مربوط' }} {{ $student->department ?? ($student->departmentRelation?->name ?? '-') }}
لا توجد حسابات بعد.
@endsection