@extends('layouts.app') @section('title', "Today's Attendance") @section('header', "Today's Attendance") @section('subheader', now()->format('l, M d Y')) @section('header-actions') All Records @endsection @section('content') @can('recordOwn', App\Models\AttendanceSummary::class) @include('attendances._punch-widget', ['todaySummary' => $todaySummary]) @endcan
@if ($canViewAll)@endif @forelse ($summaries as $row) @if ($canViewAll)@endif @empty @endforelse
EmployeeInOutHoursLateOvertimeStatus
{{ $row->employee?->full_name ?? '—' }}{{ $row->first_in?->format('H:i') ?? '—' }} @if ($row->is_missing_punch)@endif {{ $row->last_out?->format('H:i') ?? '—' }} {{ $row->worked_hours }} {{ $row->late_minutes ? $row->late_minutes.'m' : '—' }} {{ $row->overtime_minutes ? $row->overtime_minutes.'m' : '—' }}
No attendance recorded today yet.
@endsection