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

@php $string = $production_order->pro_order_no; $parts = explode(' ', $string); $firstPart = explode('/', $parts[0]); $secondPart = explode('/', $parts[1]); @endphp

@foreach ($details as $detail) @endforeach
No. Part No. Part Name UOM Required Qty(BOM) Current Inventory Qty Request Qty Difference
{{ $loop->iteration }} {{ $detail->products->part_no ?? '' }} {{ $detail->products->part_name ?? '' }} {{ $detail->products->units->name ?? '' }}
@endsection