@extends('layouts.app') @section('title', 'Housekeeping Tasks') @section('breadcrumbs') @endsection @section('content')

Housekeeping Tasks

Manage room cleaning and maintenance tasks

Assign Task

Pending

8

In Progress

12

Completed

45

Total Tasks

65

@for ($i = 0; $i < 8; $i++)

Room {{ 100 + $i }}

Regular Cleaning

@if ($i % 3 === 0) High @elseif ($i % 3 === 1) Medium @else Low @endif

Assigned to: Maria Garcia

Scheduled: {{ now()->addHours($i)->format('H:i') }}

Estimated Time: 45 minutes

@endfor
@for ($i = 0; $i < 12; $i++)

Room {{ 200 + $i }}

Deep Cleaning

In Progress

Assigned to: Juan Rodriguez

Started: {{ now()->subHours($i % 3 + 1)->format('H:i') }}

Progress: {{ 30 + ($i * 5) }}%

@endfor
@for ($i = 0; $i < 10; $i++) @endfor
Room Task Type Assigned To Completed Time Status
Room {{ 300 + $i }} Regular Cleaning Ana Martinez {{ now()->subHours($i * 2 + 3)->format('H:i') }} Completed
@endsection