@extends('layouts.app') @section('title', 'سجل الطلاب') @section('content')
STUDENTS

سجل الطلاب

جميع الطلاب المسجلين في النظام

🔍

🎓 قائمة الطلاب

{{ $students instanceof \Illuminate\Pagination\LengthAwarePaginator ? $students->total() : $students->count() }} طالب
@forelse ($students as $student) @empty @endforelse
# الاسم الهاتف البريد حالة الليد تاريخ التسجيل
{{ $student->id }} {{ $student->lead_name ?? $student->name ?? '—' }} {{ $student->phone ?? '—' }} {{ $student->email ?? '—' }} @php $statusLabels = ['new'=>'جديد','contacted'=>'تم التواصل','dead'=>'ميت','interested'=>'مهتم','documents_collected'=>'مستندات','initial_acceptance'=>'قبول مبدئي','paid'=>'تم الدفع','final_acceptance'=>'قبول نهائي','registered'=>'مسجل']; $color = $student->lead_status === 'registered' ? 'bg-green-50 text-green-700' : 'bg-amber-50 text-amber-700'; @endphp {{ $statusLabels[$student->lead_status] ?? $student->lead_status ?? '—' }} {{ \Carbon\Carbon::parse($student->created_at)->format('Y-m-d') }}
📂

لا يوجد طلاب

@if (method_exists($students, 'links'))
{{ $students->links() }}
@endif
@endsection