@extends('layouts.app') @section('title') BOM VIEW @endsection @section('button') Back @endsection @section('content')
PRODUCT INFORMATION

@if (isset($bom->attachment1)) @endif
@if (isset($bom->attachment2)) @endif
@if (isset($bom->attachment3)) @endif
@if (isset($bom->kanbon_card)) @endif

{{-- Material and Purchase Part --}}
Material and Purchase Part

@foreach ($purchase_parts as $purchase_part) @endforeach
Sr No Part No Part Name Type of Product UOM Qty / Length Required
{{ $loop->iteration }} {{ $purchase_part->product->part_no ?? '' }} {{ $purchase_part->product->part_name ?? '' }} {{ $purchase_part->product->type_of_products->type ?? '' }} {{ $purchase_part->product->units->name ?? '' }} {{ $purchase_part->qty }}

{{-- Sub Part --}}
Circuit / Kanban

@foreach ($sub_parts as $sub_part) @endforeach
Sr No Part No Part Name Type of Product UOM Qty Required
{{ $loop->iteration }} {{ $sub_part->product->part_no ?? '' }} {{ $sub_part->product->part_name ?? '' }} {{ $sub_part->product->type_of_products->type ?? '' }} {{ $sub_part->product->units->name ?? '' }} {{ $sub_part->qty }}

{{-- Crushing Material --}}
Process

@foreach ($processes as $sub_process) @endforeach
Sr No Process Process No Action
{{ $loop->iteration }} {{ $sub_process->process->name ?? '' }} {{ $sub_process->process_no }}

{{-- PROCESS MODAL --}} @endsection