| Employee | Date | Check In | Check Out | Total Work | Status | Type |
|---|---|---|---|---|---|---|
| {{ $att->user->name }} | {{ $att->date->format('d/m/Y') }} | {{ $att->check_in ? $att->check_in->format('h:i A') : '-' }} | {{ $att->check_out ? $att->check_out->format('h:i A') : '-' }} | @if ($att->total_work_minutes) {{ floor($att->total_work_minutes / 60) }}h {{ $att->total_work_minutes % 60 }}m @else - @endif | {{ ucfirst($att->status) }} | {{ $att->is_manual ? 'Manual' : 'System' }} |