@extends('layouts.app') @section('title', 'Manage Work Order') @section('content')
{{ $workOrder->notes ?? 'No production notes specified.' }}
| Component | Total Required | On Hand | Stock Status |
|---|---|---|---|
|
{{ $item->component->name }}
{{ $item->component->sku }}
|
{{ number_format($required, 2) }} {{ $item->component->unit_of_measure }} | {{ number_format($stock, 2) }} | @if($hasEnough) Available @else Shortage @endif |