@extends('admin.layouts.master') @section('title', 'إدارة المستويات - عرض') @section('content') @php $stats = $profile['stats'] ?? []; @endphp
@include('admin.partials.page-header', [ 'title' => 'الملف الشامل للمستوى', 'breadcrumbs' => $breadcrumbs, 'actions' => [ [ 'title' => 'تعديل', 'url' => route('admin.study-levels.edit', $studyLevel), 'icon' => 'ti ti-edit', 'class' => 'btn-primary', ], ], ]) @include('admin.partials.alerts')

بيانات المستوى

{{ $studyLevel->name }}

{{ $studyLevel->status_label }} رقم المستوى: #{{ $studyLevel->id }} تاريخ الإنشاء: {{ optional($studyLevel->created_at)->format('Y-m-d') }}
الحلقات: {{ $stats['groups_count'] ?? 0 }} المعلمون: {{ $stats['teachers_count'] ?? 0 }} الطلاب: {{ $stats['students_count'] ?? 0 }} المسارات: {{ $stats['tracks_count'] ?? 0 }}

الحلقات النشطة

{{ $stats['active_groups_count'] ?? 0 }}

التسجيلات

{{ $stats['enrollments_count'] ?? 0 }}

متابعات هذا الأسبوع

{{ $stats['progress_this_week'] ?? 0 }}

اختبارات هذا الشهر

{{ $stats['assessments_this_month'] ?? 0 }}

الحلقات المرتبطة بالمستوى
@forelse($profile['groups'] ?? [] as $group) @empty @endforelse
الحلقة الفرع المعلم المسار الطلاب الحالة
{{ $group['name'] }} {{ $group['branch'] }} {{ $group['teacher'] }} {{ $group['track'] }} {{ $group['students_count'] }} {{ $group['status'] }}
لا توجد حلقات مرتبطة بهذا المستوى
المعلمون المرتبطون
@forelse($profile['teachers'] ?? [] as $teacher) @empty @endforelse
المعلم الهاتف عدد الحلقات
{{ $teacher['name'] }} {{ $teacher['phone'] }} {{ $teacher['groups_count'] }}
لا يوجد معلمون مرتبطون
الطلاب المرتبطون بالمستوى
@forelse($profile['students'] ?? [] as $student) @empty @endforelse
الطالب الهاتف الحالة
{{ $student['name'] }} {{ $student['phone'] }} {{ $student['status'] }}
لا يوجد طلاب مرتبطون
آخر المتابعات التعليمية
@forelse($profile['recent_progress'] ?? [] as $row) @empty @endforelse
التاريخ الطالب الحلقة الحفظ
{{ $row['date'] }} {{ $row['student'] }} {{ $row['group'] }} {{ $row['memorization'] }}
لا توجد متابعات حديثة
آخر الاختبارات
@forelse($profile['recent_assessments'] ?? [] as $row) @empty @endforelse
التاريخ الطالب الحلقة النوع المتوسط
{{ $row['date'] }} {{ $row['student'] }} {{ $row['group'] }} {{ $row['type'] }} @if($row['average'] !== null) {{ $row['average'] }}% @else - @endif
لا توجد اختبارات حديثة
@endsection