@extends('layouts.master') @section('css') @section('title') {{ __('home.boms') }} @stop @endsection @section('content')

{{ __('home.boms') }}

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