@extends('layouts.app') @section('title', 'Laporan Kehadiran Karyawan') @section('page-title', 'Laporan Presensi & Kehadiran') @section('page-subtitle', 'Laporan log presensi komprehensif dengan filter kustom tanggal dan departemen.') @section('page-actions')
@endsection @section('content') {{-- Filter Preset Card --}}| Tanggal | Karyawan | Departemen | Jam Masuk | Jam Pulang | Status | Terlambat | Jarak Geofence |
|---|---|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($att->attendance_date)->translatedFormat('d M Y') }} |
@if($att->employee?->photo)
{{ $att->employee?->name ?? 'Karyawan' }}{{ $att->employee?->nik }} |
{{ $att->employee?->department?->name ?? '-' }} | @if($att->check_in) {{ \Carbon\Carbon::parse($att->check_in)->format('H:i') }} @else - @endif | @if($att->check_out) {{ \Carbon\Carbon::parse($att->check_out)->format('H:i') }} @else - @endif | {{ $att->status_label }} | @if($att->late_minutes > 0) +{{ $att->late_minutes }}m @else - @endif | @if($att->distance_in !== null) {{ round($att->distance_in) }} Meter @else - @endif |
| Tidak ada log presensi pada periode yang dipilih. | |||||||