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