@extends('layouts.app') @section('title', 'Housekeeping') @section('page-title', 'Housekeeping') @section('content')
| Room | Task | Assigned To | Scheduled | Status | Actions |
|---|---|---|---|---|---|
| Room {{ $task->room->room_number }} | {{ ucfirst($task->task_type) }}
@if($task->note) {{ Str::limit($task->note,50) }} @endif
|
{{ $task->assignedTo->name ?? 'Unassigned' }} | {{ $task->scheduled_date->format('d M Y') }} | @if($task->status==='pending') Pending @elseif($task->status==='in_progress') In Progress @else Done @endif |
@if($task->status !== 'done')
@if($task->status === 'pending')
@endif
@else
{{ $task->completed_at?->format('H:i') }}
@endif
|
No tasks | |||||