@php $data = []; $data['title'] = "Dashboard"; @endphp @include('teacher.components.header_link', $data);
@include('teacher.components.menu')
@include('teacher.components.navbar', $data)

My Attendance History

🔄 Reset
@forelse ($attendance as $i => $row) @empty @endforelse
S.No. Name Branch Date Entry Time Exit Time Entry Location Entry Address Exit Location Exit Address Status
{{ $i + 1 }} {{ $row->student->name ?? 'N/A' }} {{$row->department}} {{ \Carbon\Carbon::parse($row->date)->format('d M Y') }} {{ $row->entry_time ?? '-' }} {{ $row->exit_time ?? '-' }} @if ($row->entry_location) @php $entry = json_decode($row->entry_location); @endphp @else Not Available @endif {{ $row->entry_address ?? 'Not Available' }} @if ($row->exit_location) @php $exit = json_decode($row->exit_location); @endphp @else Not Available @endif {{ $row->exit_address ?? 'Not Available' }} {{ $row->status ?? 'Not Available' }}
No attendance found.
@include('teacher.components.footer') @include('teacher.components.footer_link')