{{-- قسم تفاصيل إضافية عن الفصل (اختياري) --}}
@if ($classRoom)
تفاصيل الفصل
{{-- مثال زر للانتقال لصفحة الفصل إن وجدت Route --}}
@if (Route::has('classrooms.show'))
صفحة الفصل
@endif
الاسم
{{ $classRoom->name ?? '—' }}
@if (!empty($classRoom->grade))
الصف
{{ $classRoom->grade }}
@endif
@if (!empty($classRoom->section))
الشعبة
{{ $classRoom->section }}
@endif
@if (!empty($classRoom->code))
الكود
{{ $classRoom->code }}
@endif
{{-- مثال لعرض اسم المعلم المرتبط بالفصل إن كانت العلاقة موجودة --}}
@if (method_exists($classRoom, 'teacher') && $classRoom->relationLoaded('teacher') && $classRoom->teacher)