@extends('admin.layout') @section('content')

Attendance Records

@forelse($attendances as $a) @empty @endforelse
# Worker Check-in Check-out Signatures Notes
{{ $a->id }} {{ $a->worker->name }} {{ $a->check_in_at ? $a->check_in_at->format('Y-m-d H:i') : '-' }}
{{ $a->check_in_ip }}
{{ $a->check_out_at ? $a->check_out_at->format('Y-m-d H:i') : '-' }}
{{ $a->check_out_ip }}
@if($a->check_in_signature) @endif @if($a->check_out_signature) @endif {{ \Illuminate\Support\Str::limit($a->notes, 80) }}
No attendance records.
{{ $attendances->links() }} @endsection