@extends('layouts.dashboard.managerapp') @section('title', 'Planning Dashboard') @section('content')
Overview of schedules, priorities, and timelines.
| 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. |
||||||