@extends('layouts.admin.master') @section('title', 'BOM') @section('vendor-style') @endsection @section('vendor-script') @endsection @section('content')
BOM List
Masters
BOM List
@if(count($errors) > 0)
Error!!
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif @if($message = Session::get('success'))
{{ $message }}
@endif
Branch
{{ $production->product->name }}
@foreach($production->bomItems as $material) @endforeach
#
Code
Name
Quantity
{{ $loop->iteration }}
{{ $material->product->code }}
{{ $material->product->name }}
{{ $material->quantity }}
@endsection