@extends('layouts.admin-simple') @section('title', $dispatch->reference_number) @section('breadcrumb') @endsection @section('page-title')

{{ $dispatch->reference_number }}

Easy Out Dispatch — {{ $dispatch->dispatch_date->format('d M Y') }}

arrow_back Back
@csrf @method('DELETE')
@endsection @section('content')
outputDispatch Information
@if($dispatch->purpose) @endif
Reference # {{ $dispatch->reference_number }}
Dispatch Date {{ $dispatch->dispatch_date->format('d M Y') }}
Bill Number {{ $dispatch->bill_number ?? '-' }}
MR No. {{ $dispatch->mr_no ?? '-' }}
Item Description {{ $dispatch->item_description }}
Unit {{ $dispatch->unit }}
Quantity {{ number_format($dispatch->quantity, 2) }}
Purpose {{ $dispatch->purpose }}
location_onDestination
Project {{ $dispatch->project?->project_number }}
{{ $dispatch->project?->project_name ?? '-' }}
Division {{ $dispatch->division?->division_name ?? '-' }}
Received By {{ $dispatch->received_by ?? '-' }}
Recorded By {{ $dispatch->createdBy?->name ?? '-' }}
Created At {{ $dispatch->created_at->format('d M Y H:i') }}
@if($dispatch->notes)
notesNotes

{{ $dispatch->notes }}

@endif
@endsection