@extends('layouts.admin-simple') @section('title', 'Easy Out — Dispatches') @section('breadcrumb') @endsection @section('page-title')

Easy Out — Dispatches

Quick dispatch records to projects without material request flow

add New Dispatch
@endsection @section('content') @if(session('success'))
{{ session('success') }}
@endif {{-- Filter --}}
to @if(request()->hasAny(['search','project_id','date_from','date_to'])) Clear @endif
outputDispatch Records
@forelse($dispatches as $dispatch) @empty @endforelse
Ref # Date Bill # MR No. Item Description Unit Qty Project Division Received By
{{ $dispatch->reference_number }} {{ $dispatch->dispatch_date->format('d M Y') }} {{ $dispatch->bill_number ?? '-' }} {{ $dispatch->mr_no ?? '-' }} {{ $dispatch->item_description }} {{ $dispatch->unit }} {{ number_format($dispatch->quantity, 2) }} {{ $dispatch->project?->project_number }}
{{ $dispatch->project?->project_name ?? '-' }}
{{ $dispatch->division?->division_name ?? '-' }} {{ $dispatch->received_by ?? '-' }} visibility
No dispatch records found.
@if($dispatches->hasPages()) @endif
@endsection