@extends('layouts.app') @section('title', 'Production Output') @section('content')
Record finished goods produced
| 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. | |||||