@php $pdfUrls = [ 'original' => !empty($surat['file_current']) ? route('surat-keluar-workflow.view-pdf', ['surat' => $surat['id'], 'version' => 'current']) : null, 'annotated' => !empty($surat['file_annotated']) ? route('surat-keluar-workflow.view-pdf', ['surat' => $surat['id'], 'version' => 'annotated']) : null, 'numbered' => !empty($surat['file_numbered']) ? route('surat-keluar-workflow.view-pdf', ['surat' => $surat['id'], 'version' => 'numbered']) : null, ]; if (!empty($surat['file_numbered'])) { $pdfToShow = 'numbered'; $pdfVersionLabel = 'Versi Final (dengan Nomor Surat)'; } elseif (!empty($surat['file_annotated'])) { if (!empty($surat['signed_at'])) { $pdfToShow = 'annotated'; $pdfVersionLabel = 'Versi Ditandatangani'; } else { $pdfToShow = 'annotated'; $pdfVersionLabel = 'Anotasi/Koreksi'; } } else { $pdfToShow = 'current'; $pdfVersionLabel = 'Versi Asli'; } @endphp
Tidak ada file yang tersedia