@php $data = []; $data['title'] = "Dashboard"; @endphp @include('HOD.components.header_link', $data);
| S. No. | Student Name | Year | Department | Date | Entry Time | Exit Time | Entry Location | Exit Location | Entry Address | Exit Address | Status |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $attendance->student->name ?? 'N/A' }} | {{ $attendance->student->year ?? 'N/A' }} | {{ $attendance['department'] }} | {{ $attendance['date'] }} | {{ $attendance['entry_time'] }} | {{ $attendance['exit_time'] ?? 'N/A' }} | @php $entryLoc = json_decode($attendance['entry_location'], true); @endphp | @php $exitLoc = json_decode($attendance['exit_location'], true); @endphp | {{ $attendance['entry_address'] }} | {{ $attendance['exit_address'] }} | {{ $attendance['status'] === 'P' ? 'Present' : 'Absent' }} |