مراجعة سجلات الصعود والنزول اليومية للطلاب
| الطالب | الحافلة | النوع | التوقيت | الحالة |
|---|---|---|---|---|
|
{{ mb_substr($attendance->enrollment->student->name, 0, 1) }}
{{ $attendance->enrollment->student->name }}
|
{{ $attendance->enrollment->bus->plate_number }} | {{ $attendance->type == 'pickup' ? 'توصيل للمدرسة' : 'عودة للمنزل' }} | {{ $attendance->recorded_at->format('H:i A') }} | @php $statuses = [ 'picked_up' => ['bg' => 'blue', 'text' => 'تم الركوب'], 'dropped_off' => ['bg' => 'emerald', 'text' => 'تم النزول'], 'absent' => ['bg' => 'red', 'text' => 'غائب'], ]; $s = $statuses[$attendance->status] ?? ['bg' => 'gray', 'text' => $attendance->status]; @endphp {{ $s['text'] }} |
|
لا توجد سجلات حضور لهذا اليوم |
||||