@extends('admin.layout') @section('content')
Track and manage worker time entries and hours
| Worker | Date | Start Time | End Time | Hours Worked | Present/Absent | Actions |
|---|---|---|---|---|---|---|
|
@if(isset($log->worker) && $log->worker->image)
@endif
{{ $log->worker->name }}
Worker ID: {{ $log->worker->id }}
|
{{ $log->work_date }}
{{ \Carbon\Carbon::parse($log->work_date)->format('l') }}
|
{{ $log->start_time }}
|
{{ $log->end_time }}
|
@php
$hours = floor($log->hours_worked);
@endphp
{{$hours }}
|
@if($log->hours_worked>=8)
Present
@else
Absent
@endif
|