@extends('layouts.admin-simple') @section('title', 'Outgoing Transactions') @section('content')

exit_to_app Outgoing Transactions

Material dispatch and inventory management system

filter_list Filters
@php $outgoingProjectOptions = [['value' => '', 'text' => 'All Projects']]; foreach($projects as $project) { $outgoingProjectOptions[] = [ 'value' => $project->id, 'text' => $project->project_name ]; } @endphp
@php $outgoingDivisionOptions = [['value' => '', 'text' => 'All Divisions']]; foreach($divisions as $division) { $outgoingDivisionOptions[] = [ 'value' => $division->id, 'text' => $division->name ]; } @endphp
clear Clear
info Material Request Management
assignment
Material Requests Dashboard

All material requests are now managed through the Material Issued section for better workflow and approval management.

info Material requests created here will automatically appear in the Material Issued section for approval and dispatch.
@endsection @push('styles') @endpush @push('scripts') @endpush