@extends('layouts.layout-2') @section('content')
{{ __('Produktionen') }} {{ __('Neue Produktion') }}
@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