@extends('layouts.admin-simple') @section('title', 'Approve & Dispatch Material Request') @section('content')

local_shipping Approve & Dispatch Material Request

Review, approve and dispatch material request items in one step

arrow_back Back to List
@if($errors->any())
@endif @if(session('success'))
{{ session('success') }}
@endif
assignment Request Information
Request Number:
{{ $materialRequest['request_number'] }}
Date:
{{ $materialRequest['request_date'] }}
Project:
{{ $materialRequest['project'] }}
Requested By:
{{ $materialRequest['requested_by'] }}
local_shipping Dispatch Details
@csrf
info Dispatch Information
@error('dispatch_date')
{{ $message }}
@enderror
@php $receiverOptions = [['value' => '', 'text' => 'Select Receiver']]; foreach($users as $user) { $receiverOptions[] = [ 'value' => $user->id, 'text' => $user->name ]; } @endphp

inventory_2 Items Dispatch
@foreach($materialRequest['items'] as $index => $item) @endforeach
Item Code Description Unit Available Requested Dispatched Remaining Qty to Issue
{{ $item['item_code'] }}
{{ $item['description'] }}
{{ $item['unit'] }} {{ $item['quantity_available'] }} {{ $item['quantity_requested'] }} {{ $item['quantity_released'] }} {{ $item['quantity_remaining'] }}

info Items: {{ count($materialRequest['items']) }} items
arrow_back Cancel
info Dispatch Process
  • Review the requested items and remaining quantities to be dispatched
  • Dispatched: Previously issued quantity
  • Remaining: Quantity still pending dispatch
  • Adjust "Qty to Issue" based on available stock
  • Select appropriate dispatch status (partial/full)
  • Specify who will receive the materials
  • Inventory levels will be updated automatically upon dispatch
local_shipping
@endsection @push('scripts') @endpush