@extends('layouts.app') @section('title', 'Work Orders') @section('content')
| Order No | Product | BOM | Quantity | Priority | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ $order->work_order_no }}
{{ $order->start_date->format('M d') }} -
{{ $order->end_date->format('M d') }}
|
{{ $order->product->name }} | v{{ $order->bom->version }} | {{ number_format($order->quantity) }} | @php $p_colors = ['low' => 'secondary', 'medium' => 'info', 'high' => 'warning', 'urgent' => 'danger']; @endphp {{ ucfirst($order->priority) }} | @php $s_colors = ['draft' => 'secondary', 'released' => 'primary', 'in_progress' => 'warning', 'completed' => 'success', 'cancelled' => 'danger']; @endphp {{ str_replace('_', ' ', ucfirst($order->status)) }} | Manage |
| Plan your production. No work orders found. | ||||||