@extends('layouts.dashboard.managerapp') @section('title', 'Planning Dashboard') @section('content')

Production Planning

Overview of schedules, priorities, and timelines.

@csrf
High Priority
{{ $stats['high'] ?? 0 }}
Immediate Attention
Medium Priority
{{ $stats['medium'] ?? 0 }}
On Track
Low Priority
{{ $stats['low'] ?? 0 }}
Planned
Master Production Schedule
Ranked by Priority & Time
@forelse($timeline as $item) @empty @endforelse
Priority Route Card Project Start Process Step Resource (Machine/Op) Scheduled Start Scheduled End
@if($item->priority == 'High') High @elseif($item->priority == 'Medium') Medium @else Low @endif {{ $item->route_no }} {{ \Carbon\Carbon::parse($item->project_start_date)->format('M d, Y') }}
{{ substr($item->process, 0, 1) }}
{{ $item->process }}
{{ $item->machine_name ?: 'Unassigned' }} {{ \Carbon\Carbon::parse($item->start_date)->format('d M H:i') }} {{ \Carbon\Carbon::parse($item->end_date)->format('d M H:i') }}

No scheduled processes found.
@endsection