@extends('layouts.app') @section('title', 'Delivery') @section('breadcrumb')Delivery {{ $delivery->job?->job_number }}@endsection @section('content')
{{ $delivery->job?->contact?->full_name }}
| Description | Qty | Status |
|---|---|---|
| {{ $item->description }} | {{ $item->qty }} | @php $sc = match($item->status) { 'delivered' => 'green', 'loaded' => 'blue', 'damaged' => 'red', default => 'gray' }; @endphp {{ ucfirst($item->status) }} |
{{ $delivery->notes }}
{{ $delivery->access_instructions }}