@extends('layouts.app') @section('title') Material Requisition Create @endsection @section('button') Back @endsection @section('content')
@csrf
Material Requisition Form Details

@if (old('productionorder')) @foreach (old('productionorder') as $key => $row) @endforeach @endif
No. Production Order NO Shift Process Machine Planned Date Total Planned Qty Action
{{ $key + 1 }} {{ $row['pro_order_no'] }} {{ $row['shift'] ?? '' }} {{ $row['process_name'] }} {{ $row['machine_name'] }} {{ $row['planned_date'] }} {{ $row['planned_qty'] }}
@if (old('product')) @foreach (old('product') as $key => $material_detail) @endforeach @endif
No. Part No. Part Name Type of Product Model Variance UOM Required Qty(BOM) Current Inventory Request Qty Difference Remarks Action
{{ $key + 1 }} {{ $material_detail['part_no'] }} {{ $material_detail['part_name'] ?? '' }} {{ $material_detail['type_of_product'] }} {{ $material_detail['model'] }} {{ $material_detail['variance'] }}
@endsection