@extends('layouts.app') @section('title', 'Edit Bill of Materials') @section('content')

Edit Bill of Materials

@include('manufacturing.partials.navigation')
Edit BOM: {{ $model->name }}
@csrf @method('PUT')
Code cannot be changed
@error('name') {{ $message }} @enderror
@error('product_id') {{ $message }} @enderror
@error('status') {{ $message }} @enderror
@error('quantity') {{ $message }} @enderror Quantity this BOM produces
@error('unit_of_measure') {{ $message }} @enderror Units related to the selected product
@error('effective_date') {{ $message }} @enderror
@error('expiry_date') {{ $message }} @enderror
@error('notes') {{ $message }} @enderror
is_default) ? 'checked' : '' }}>
Make this the default BOM for the selected product

Components ({{ $model->components->count() }})
@foreach($model->components as $index => $component)
quantity_required) }}">
wastage_percentage) }}">
sequence_order ?? $index + 1) }}" min="0">
@endforeach

Cancel
@endsection