{{ $teachers->count() }}
{{ $teachers->where('is_active', true)->count() }}
{{ $teachers->where('is_active', false)->count() }}
| الاسم الكامل | البريد الإلكتروني | الهاتف | التخصص | عدد الحلقات | الحالة | الإجراءات |
|---|---|---|---|---|---|---|
|
{{ $teacher->full_name }}
|
{{ $teacher->user->email }} | {{ $teacher->phone ?? '-' }} | {{ $teacher->specialization ?? '-' }} |
{{ $teacher->halaqat->count() }}
@if($teacher->halaqat->count() > 0)
الحلقات: @foreach($teacher->halaqat as $halaqa)• {{ $halaqa->name }} ({{ $halaqa->students->count() }} طالب) @endforeach |
@if($teacher->is_active) نشط @else غير مفعل @endif |
@if($teacher->is_active)
@else
@endif
|
| لا يوجد معلمون مسجلون | ||||||