@extends('student.layouts.app') @section('title', app()->getLocale() === 'ar' ? 'الحضور' : 'Attendance') @section('content') @php $isArabic = app()->getLocale() === 'ar'; $presentCount = 0; $absentCount = 0; foreach ($attendanceRecords as $attendance) { $isAbsent = in_array(auth()->id(), $attendance->absentStudents->pluck('student_id')->toArray(), true); $isAbsent ? $absentCount++ : $presentCount++; } @endphp
{{ $isArabic ? 'جدول زمني واضح لحالات الحضور والغياب داخل هذه المادة.' : 'A clear timeline of your attendance in this course.' }}
| {{ $isArabic ? 'التاريخ' : 'Date' }} | {{ $isArabic ? 'النوع' : 'Type' }} | {{ $isArabic ? 'الحالة' : 'Status' }} | {{ $isArabic ? 'تاريخ النشر' : 'Published' }} |
|---|---|---|---|
| {{ $attendance->date }} | {{ $attendance->type }} | {{ $isAbsent ? __('dashboard.Absent') : __('dashboard.Present') }} | {{ $attendance->created_at?->format('Y-m-d H:i') }} |
| {{ $isArabic ? 'لم يتم تسجيل أي حضور أو غياب بعد.' : 'No attendance records yet.' }} | |||