@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
| # |
{{ __('home.bom_code') }} |
{{ __('home.bom_name') }} |
{{ __('home.finished_product') }} |
{{ __('home.output_qty') }} |
{{ __('home.active_status') }} |
{{ __('home.actions') }} |
@foreach($boms as $key => $bom)
| {{ $key + 1 }} |
{{ $bom->code }} |
{{ $bom->name }} |
{{ $bom->finishedProduct->product_name ?? '---' }} |
{{ (float) $bom->output_quantity }} |
@if($bom->is_active)
{{ __('home.active') }}
@else
{{ __('home.disabled') }}
@endif
|
|
@endforeach
{{ $boms->links() }}