@extends('layouts.app') @section('title') BOM REPORT @endsection @section('content')
@csrf
@csrf
@if (isset($bomTree))
Item No. @foreach ($products as $product) @if ($bomTree['bom']['product_id'] == $product->id) {{ $product->part_no }} @endif @endforeach
@include('partials.bom_tree', [ 'bomTree' => $bomTree, 'units' => $units, ])
Part No. Part Name Type Unit QTY
@endif
@endsection