@extends('layouts.app') @section('content')

Clock de tous les employés

Dashboard Clock
@foreach($employees as $employee) @php $todaySheet = $employee->timeSheets->first(); @endphp @endforeach
Matricule Nom Start End Heures travaillées
{{ $employee->employee_id }} {{ $employee->first_name }} {{ $employee->last_name }} {{ $todaySheet->start_time ?? '-' }} {{ $todaySheet->end_time ?? '-' }} {{ $todaySheet->hours_worked ?? '-' }}
@endsection