@extends('layouts.app') @section('content')
@include('production.record')
Production List
@foreach($productions as $production) @endforeach
# Product Name UOM Quantity Created at Created by Action
{{ $loop->iteration }} {{ $production->bom->product->name }} {{ $production->bom->uom }} {{ $production->quantity }} {{ $production->created_at }} {{ optional($production->user)->name }}
@if(session('success')) @endif @if ($errors->any()) @endif @endsection