@extends('layouts.app') @section('title', 'Pengajuan — ' . ($application->debitur?->nama ?? 'Baru')) @section('content') @php $sections = $application->sectionCompleteness(); $allDone = $application->allSectionsComplete(); $statusRaw = $application->getRawOriginal('status'); $debiturNama = $application->debitur?->nama ?? '—'; $kelompokNama = $application->pengajuanKelompok?->kelompok?->nama ?? $application->kelompok?->nama ?? '—'; $statusLabel = match($statusRaw) { 'draft' => ['text' => 'Draft', 'class' => 'bg-secondary'], 'submitted' => ['text' => 'Diajukan', 'class' => 'bg-primary'], 'fa_pending' => ['text' => 'Menunggu FA', 'class' => 'bg-warning text-dark'], 'fa_inprogress' => ['text' => 'FA Berjalan', 'class' => 'bg-warning text-dark'], 'fa_submitted' => ['text' => 'FA Selesai', 'class' => 'bg-info'], 'verifikasi_final' => ['text' => 'DA + Finalisasi', 'class' => 'bg-primary'], default => ['text' => ucfirst(str_replace('_', ' ', $statusRaw)), 'class' => 'bg-secondary'], }; // Seksi hanya bisa diedit ketika masih draft $isEditable = $application->isEditable(); // "Buka Mode Lapangan" aktif saat fa_pending (setelah submit, langsung siap FA) $canLapangan = $statusRaw === 'fa_pending'; @endphp