@extends('layouts.layout-2') @section('content') @include('admin.inventory.partials.wawi-ui')

{{ __('Produktionen') }}

{{ __('Erfasste Produktionschargen inkl. Rohstoff- und Verpackungsverbrauch') }}

@foreach($values as $row) @endforeach
{{ __('Datum') }} {{ __('Produkt') }} {{ __('Stück') }} {{ __('Standort') }} {{ __('MHD-Hinweis') }}
{{ $row->produced_at?->format('d.m.Y') }} {{ $row->product?->name ?? '—' }} {{ $row->quantity }} {{ $row->location?->name ?? '—' }} @if($row->mhd_warning) {{ __('Ja') }} @else @endif
@endsection