@extends('layouts.app') @section('content')
ANALISIS DATA

Laporan absensi

Rekap kehadiran pegawai cabang.

Total pegawai

{{ $employees }}

Data absensi

{{ $attendances->total() }}

Halaman laporan

{{ $attendances->currentPage() }}

@forelse($attendances as $attendance)@empty@endforelse
TanggalPegawaiMasukPulangStatusLokasi
{{ $attendance->attendance_date->format('d M Y') }}{{ $attendance->employee->full_name }}{{ optional($attendance->check_in)->format('H:i') }}{{ optional($attendance->check_out)->format('H:i') ?: '-' }}{{ $attendance->status }}{{ $attendance->location_name }}
Belum ada data.
{{ $attendances->links() }}
@endsection