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

local_shipping Approve & Dispatch Material Issue

Review, approve and dispatch material issue items in one step

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

inventory_2 Items Dispatch
@if(isset($materialRequest['items'])) @foreach($materialRequest['items'] as $index => $item) @endforeach @else @endif
Item Code Description Unit Available Requested Qty Issued
{{ $item['item_code'] }}
{{ $item['description'] }}
{{ $item['unit'] }} {{ $item['quantity_available'] ?? 0 }} {{ $item['quantity_requested'] ?? 0 }}
No items found for this request

info Items: {{ isset($materialRequest['items']) ? count($materialRequest['items']) : 0 }} items
arrow_back Cancel
info Dispatch Process
  • Review the requested items and quantities below
  • Adjust the issued quantities based on availability
  • 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