@extends('layouts.app') @section('title', 'Tabel Absensi') @section('content')

Rekap Absensi

Laporan kehadiran pegawai.

Kembali ke Dashboard
@forelse($attendances as $index => $att) @empty @endforelse
No Tanggal Pegawai Masuk Pulang Lokasi Foto
{{ $attendances->firstItem() + $index }} {{ \Carbon\Carbon::parse($att->tanggal)->format('d M Y') }}

{{ $att->employee ? $att->employee->nama : 'N/A' }}

{{ $att->employee ? $att->employee->nidn_nup : 'N/A' }}

@if($att->waktu_masuk) {{ $att->waktu_masuk }} @else - @endif @if($att->waktu_pulang) {{ $att->waktu_pulang }} @else - @endif @if($att->latitude) Lihat Peta @else - @endif
@if($att->foto_masuk) M @endif @if($att->foto_pulang) P @endif
Tidak ada data absensi.
{{ $attendances->links() }}
@endsection