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