{{-- resources/views/manufacturing/work-orders/index.blade.php --}} @extends('layouts.app') @section('title', 'Work Orders') @section('content')
| WO # | Finished Item | Planned Qty | Produced | Progress | Start Date | End Date | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $wo->number }} | {{ $wo->finishedItem->name }} | {{ $wo->planned_qty }} {{ $wo->bom->unit }} | {{ $wo->produced_qty }} |
{{ $wo->progress }}%
|
{{ $wo->planned_start_date->format('d M Y') }} | {{ $wo->planned_end_date->format('d M Y') }} | @php $cls=['draft'=>'secondary','submitted'=>'info','in_process'=>'warning','completed'=>'success','stopped'=>'danger','cancelled'=>'secondary']; @endphp {{ ucfirst(str_replace('_',' ',$wo->status)) }} | |
| No work orders found | ||||||||