@extends('layouts.app') @section('title', 'Production Management') @section('subtitle', 'Manage production operations and schedules') @section('content')
| Code | Name | Type | Status | Priority | Progress | Target | Actual | Start Date | Actions |
|---|---|---|---|---|---|---|---|---|---|
|
{{ $production->production_code }}
|
{{ $production->production_name }}
@if($production->description)
{{ $production->description }}
@endif
|
{{ $types[$production->type] }} | {{ $statuses[$production->status] }} | {{ $priorities[$production->priority] }} |
|
{{ $production->target_quantity ? number_format($production->target_quantity, 2) . ' ' . $production->unit_of_measure : '-' }} | {{ $production->actual_quantity ? number_format($production->actual_quantity, 2) . ' ' . $production->unit_of_measure : '-' }} | {{ $production->planned_start_date ? $production->planned_start_date->format('M d, Y') : '-' }} | |
|
No productions found Create your first production or adjust your filters. |
|||||||||