@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') }}

print Material Issue Note 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 ?? '-' }}
Issue Note{{ $dispatch->issue_note_number ?? $dispatch->reference_number }}
Purpose {{ $dispatch->purpose }}
Issued Materials
@foreach($issueLines as $line) @endforeach
DescriptionBill No.MR No.UnitQuantity
{{ $line->item_description }}{{ $line->bill_number ?? '-' }}{{ $line->mr_no ?? '-' }}{{ $line->unit }}{{ number_format($line->quantity, 2) }}
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