@forelse($pengajuanTerbaru->take(5) as $item)
@php
$isApproved = in_array($item->status, ['disetujui', 'selesai']);
$isRejected = $item->status === 'ditolak';
$statusLabel = 'Menunggu';
$badgeColor = '#F59E0B'; // orange
$badgeBg = 'rgba(245, 158, 11, 0.1)';
$iconBg = 'rgba(245, 158, 11, 0.15)';
$iconColor = '#F59E0B';
if ($isApproved) {
$statusLabel = 'Disetujui';
$badgeColor = '#10B981'; // green
$badgeBg = 'rgba(16, 185, 129, 0.1)';
$iconBg = 'rgba(16, 185, 129, 0.15)';
$iconColor = '#10B981';
} elseif ($isRejected) {
$statusLabel = 'Ditolak';
$badgeColor = '#EF4444'; // red
$badgeBg = 'rgba(239, 68, 68, 0.1)';
$iconBg = 'rgba(239, 68, 68, 0.15)';
$iconColor = '#EF4444';
}
@endphp
{{ $item->jenisSurat->nama_surat ?? 'Pengajuan Surat' }}
{{ $item->suratCetak->nomor_surat ?? $item->nomor_pengajuan }}
{{ $item->penduduk->nama_lengkap ?? 'Warga' }}
{{ $statusLabel }}
{{ $item->created_at->diffForHumans() }}
@empty
Tidak ada pengajuan terbaru
@endforelse