Manufacture
Assembled Item
Assemble Item
@foreach ($assembledItem as $item) @endforeach
# Assembled Date Assembled Item Assembled Qty Unit Cost Total Amount Action
{{$loop->iteration}} {{$item->assemble_date ?? ''}} {{$item->bom->assemble_item ?? ''}} {{$item->assembled_qty ?? ''}} ₹ {{number_format($item->per_unit_cost ?? '', 2)}} ₹ {{number_format($item->total_amount ?? '', 2)}}
Bill Of Material
+ Add BOM
@foreach ($bom as $item) @endforeach
# Assembled Item Total Amount Action
{{$loop->iteration}} {{$item->assemble_item ?? ''}} ₹ {{number_format($item->bomItems->sum('amount') ?? '', 2)}}