@extends('layouts.app') @section('title', 'Production Management') @section('subtitle', 'Manage production operations and schedules') @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
New Production Dashboard Reports

Production Operations

@forelse($productions as $production) @empty @endforelse
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->progress_percentage }}%
{{ $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') : '-' }}
@if($production->status === 'planned')
@csrf
@endif @if($production->status === 'in_progress')
@csrf
@endif @if($production->status === 'in_progress' || $production->status === 'paused')
@csrf
@endif

No productions found

Create your first production or adjust your filters.

@if($productions->hasPages())
{{ $productions->links() }}
@endif
@endsection