@extends('layouts.app') @section('page_title', 'Employee Dashboard') @section('content')
{{ now()->format('l, jS F Y') }}
| Date | Check In | Check Out | Total Time | Status |
|---|---|---|---|---|
| {{ $item->date->format('d M, Y') }} | {{ $item->check_in ? $item->check_in->format('h:i A') : '-' }} | {{ $item->check_out ? $item->check_out->format('h:i A') : '-' }} | @if ($item->total_work_minutes) {{ floor($item->total_work_minutes / 60) }}h {{ $item->total_work_minutes % 60 }}m @else - @endif | {{ ucfirst($item->status) }} @if ($item->is_late) LATE @endif |
| No records found | ||||
{{ $task->title }}
Due: {{ $task->due_date ? $task->due_date->format('d M') : 'No date' }}{{ Str::limit($anc->body, 80) }}
{{ $anc->created_at->diffForHumans() }}