@extends('layouts.master') @section('css') @endsection @section('title') Stock Item BOM @endsection @section('content')

Stock Item Bom - {{ $stockItem->name }}

@if (session('success')) @endif @if (Session::has('error')) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach ($stockItemBoms as $stockItemBom)
{{ $stockItemBom->status ? 'Active' : 'Inactive' }}
@endforeach
{{-- Modal --}} {{-- Modal --}} @endsection @section('script') @endsection