@extends('layouts.app') @section('title', 'Jobs Not Processed') @section('breadcrumb')Reports Jobs Not Processed@endsection @section('content')

Jobs Not Processed

Check measured jobs that have not yet moved to the Processing stage

Download PDF
Reset
@if($checkMeasures->count())
@foreach($checkMeasures as $cm) @php $job = $cm->job; @endphp @if($cm->notes) @endif @endforeach
File No Kitchen Value Sale Date Customer CM By CM Date Delivery Manufacture
{{ $job?->job_number ?? '—' }} {{ $job?->lead?->brand?->name ?? '—' }} ${{ number_format($job?->job_value ?? 0) }} {{ $job?->sale_date?->format('d/m/Y') ?? '—' }} {{ $job?->contact?->full_name ?? '—' }} {{ $cm->measurer?->name ?? '—' }} {{ $cm->scheduled_date?->format('d/m/Y') ?? '—' }} {{ $cm->delivery_date?->format('d/m/Y') ?? '—' }} {{ $cm->manufacture_date?->format('d/m/Y') ?? '—' }}
{{ $cm->notes }}
Total — {{ $checkMeasures->count() }} record{{ $checkMeasures->count() !== 1 ? 's' : '' }} awaiting processing
@else
No pending check measure records found — all jobs have been processed.
@endif
@endsection