@extends('layouts.app') @section('title', 'Works Order Report') @section('breadcrumb')Reports Works Orders@endsection @section('content')
All works orders per job with items breakdown
{{ $wo->job?->job_number }} · {{ $wo->job?->contact?->full_name ?? '—' }} · {{ $wo->job?->site_suburb ?? '—' }}
{{ $wo->scope_of_works }}
| # | Description | Trade | Assignee | Est. Hours | Status |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->description }} | {{ \App\Models\WorksOrderItem::tradeLabel($item->trade) }} | {{ $item->assignee?->name ?? '—' }} | {{ $item->estimated_hours ?? '—' }} | {{ ucfirst(str_replace('_', ' ', $item->status)) }} |
No line items on this works order.
@endif @if($wo->faults->isNotEmpty())