@extends('layouts.app') @section('title', 'Pipeline โ ' . $pr->request_number) @section('content') {{-- Breadcrumb --}}
@php $stageIdx = $stages->stageIndex($pr->stage); $allStages = \App\Services\PurchaseStageService::STAGES; $total = count($allStages); $pct = $total > 1 ? round(($stageIdx / ($total - 1)) * 100) : 100; $isDone = $pr->stage === 'complete'; $pendingInv = $pr->rfqInvitations->where('status', 'pending'); $sentInv = $pr->rfqInvitations->where('status', '!=', 'pending'); $selectedIds = $pr->rfqInvitations->pluck('supplier_id')->toArray(); @endphp {{-- Header card --}} {{-- Two-column layout --}}