@extends('layouts.dashboard.managerapp') @section('title', 'Route Card View') @section('content')

Production Route Card

Back

ROUTE CARD

Production Execution Document

RC No: {{ $routeCard->route_no }}

Date: {{ $routeCard->route_date }}

Job Information
Order No: {{ $routeCard->order_no ?? '-' }}
Company: {{ $routeCard->company_name ?? '-' }}
Project Material: {{ $routeCard->project_material_no ?? '-' }}
Part No: {{ $routeCard->part_no ?? '-' }}
Technical Details
Drawing No: {{ $routeCard->drawing_no ?? '-' }}
Revision: {{ $routeCard->drawing_rev ?? '-' }}
Product Type: {{ $routeCard->product_type ?? '-' }}
Description: {{ $routeCard->description ?? '-' }}
Process Sequence
@foreach($routeCard->processes as $index => $process) @endforeach
# Process Machine Operator Planned Start Planned End Status
{{ $index + 1 }} {{ $process->process }} {{ $process->machine }} {{ $employees[$process->operator] ?? '-' }} {{ $process->start_date }} {{ $process->end_date }} {{ ucfirst(str_replace('_', ' ', $process->status ?? 'Planned')) }}

Prepared By

Production Manager

Quality Inspector

@endsection