@extends('layouts.app') @section('content')
BOM List
@foreach ($boms as $bom) @endforeach
# Product Name UOM Quantity Cost Price Action
{{ $loop->iteration }} {{ $bom->product->name }} {{ $bom->uom }} {{ $bom->quantity }} {{ $bom->cost }} {{ $bom->price }}
Production Targets
@foreach ($targets as $target) @endforeach
Product Name Quantity UOM Created By Created At Action
{{ $target->product->name }} {{ $target->quantity }} {{ $target->product->uom->name }} {{ $target->createdBy->name }} {{ $target->created_at->format('Y-m-d') }}