Dashboard PUSDATIN
Pusat Data & Informasi Bansos
{{ strtoupper(auth()->user()->role) }}
{{-- ================= OFFLINE INDICATOR ================= --}}
@if(session('offline_mode'))
@endif
{{-- ================= STATISTIK UTAMA ================= --}}
{{-- ================= SANGGAH ================= --}}
| Nama |
Status |
@forelse($sanggahTerbaru ?? [] as $item)
| {{ $item->nama ?? '-' }} |
{{ ucfirst($item->status ?? '-') }}
|
@empty
|
Tidak ada data sanggah
|
@endforelse
{{-- ================= PENYALURAN ================= --}}
| Program |
Tanggal |
@forelse($penyaluranTerbaru ?? [] as $item)
| {{ $item->program ?? '-' }} |
{{ optional($item->created_at)->format('d-m-Y') ?? '-' }}
|
@empty
|
Tidak ada data penyaluran
|
@endforelse