@extends('layouts.app') @section('title', 'Riwayat Absensi') @section('content')
Lihat seluruh history absensi Anda
| No | Tanggal | Masuk | Pulang | Status |
|---|---|---|---|---|
| {{ $attendances->firstItem() + $index }} | {{ $attendance->date->format('d/m/y') }} {{ $attendance->date->isoFormat('dddd, D MMM 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 |
||||