@extends('layouts.contentNavbarLayout') @section('title', 'Dashboard - Manage Employee Attendance') @section('content')
{{ \Carbon\Carbon::now()->format('j F, Y') }}
{{ $latestAttendance->in_time->format('j F Y, h:i A') }}
@elseN/A
@endifPunch In at
{{ $activity->in_time->format('h:i A') }}.
Punch Out at
{{ $activity->out_time ? $activity->out_time->format('h:i A') : 'N/A' }}.
| # | Date | Punch In | Punch Out | Total Working Hours |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ \Carbon\Carbon::parse($attendance->date)->format('j F Y') }} | {{ $attendance->first_in_time ? \Carbon\Carbon::parse($attendance->first_in_time)->format('h:i A') : 'N/A' }} | {{ $attendance->last_out_time ? \Carbon\Carbon::parse($attendance->last_out_time)->format('h:i A') : 'N/A' }} | {{ floor($attendance->total_minutes / 60) }} hrs {{ $attendance->total_minutes % 60 }} mins |