@extends('layouts.app') @section('title', 'Production Output') @section('content')
@forelse($outputs as $output) @empty @endforelse
Production Order Item Warehouse Quantity Output Date Notes
{{ $output->productionOrder->order_number ?? 'PRD-' . str_pad($output->production_order_id, 5, '0', STR_PAD_LEFT) }} {{ $output->item->item_name ?? '' }} {{ $output->warehouse->name ?? '' }} {{ number_format($output->quantity, 2) }} {{ $output->output_date ? \Carbon\Carbon::parse($output->output_date)->format('d M Y') : '' }} {{ $output->notes ?? '-' }}
No production outputs recorded.
@if($outputs->hasPages())
{{ $outputs->links() }}
@endif

Record Production Output

@if($errors->any())
@endif
@csrf
@endsection