Bill Of Material
@csrf
Bill Of Material Info

Bill Of Material Items

Additional Manufacturing Costs

@if(count($bom->bomItems) > 0) @foreach($bom->bomItems as $index => $item) @if($item->type == 'product') @else @endif @endforeach @else @endif
# Product Name Unit Quantity Unit Cost Total Amount
{{ $loop->iteration }} {{ ($item->product->name ?? '') . ' (' . ($item->product->code ?? '') . ')' }} {{ $item->unit->name ?? '-' }} {{ $item->qty }} ₹ {{ number_format($item->unit_cost, 2) }} ₹ {{ number_format($item->amount, 2) }}
{{ $loop->iteration }} {{ $item->costType->name ?? '' }} {{ $item->unit->name ?? '-' }} 1 ₹ {{ number_format($item->unit_cost, 2) }} ₹ {{ number_format($item->amount, 2) }}
Enter BOM Items and add them...
Total: ₹ {{ number_format($bom->total_amount ?? 0, 2) }}
Cancel