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

Riwayat Absensi

Lihat seluruh history absensi Anda

@forelse($attendances as $index => $attendance) @empty @endforelse
No Tanggal Masuk Pulang Status
{{ $attendances->firstItem() + $index }} {{ $attendance->date->format('d/m/y') }} {{ $attendance->check_in ? $attendance->check_in->format('H:i') : '-' }} {{ $attendance->check_out ? $attendance->check_out->format('H:i') : '-' }} @if($attendance->status == 'hadir') Hadir @elseif($attendance->status == 'terlambat') Telat @else Alpha @endif

Tidak ada data absensi

{{ $attendances->links() }}
@endsection