@extends('layouts.admin') @section('title', 'Dashboard') @section('content')
Welcome back, {{ auth()->user()->name }}
{{ now()->format('l, F j') }}
| Cleaner | Site | Client | Clock-in Time | Duration |
|---|---|---|---|---|
|
{{ $cleaner->name }}
On Shift
|
{{ $cleaner->current_site->name ?? 'Unknown Site' }}
|
{{ $cleaner->current_site->client->name ?? 'N/A' }} |
{{ $cleaner->clocked_in_at->format('H:i') }}
|
{{ floor($cleaner->duration_minutes / 60) }}h {{ $cleaner->duration_minutes % 60 }}m |
|
No active operations All cleaners are currently off shift |
||||