@foreach ($summaryCards as $card)
{{ $card['label'] }} {{ $card['value'] }} {{ $card['hint'] ?? '' }}
@endforeach

{{ $queueTitle ?? 'Antrian Kerja' }}

{{ $queueSubtitle ?? 'Prioritas yang perlu ditindaklanjuti.' }}

@forelse ($workQueue as $item)
{{ $item['icon'] ?? '📌' }}
{{ $item['title'] ?? '-' }} {{ $item['desc'] ?? '-' }}
{{ $item['status'] ?? '-' }}
@empty
Belum ada antrian kerja.
@endforelse

Shortcut Kerja

Aksi cepat sesuai jabatan.

@foreach ($quickActions as $action) {{ $action['icon'] ?? '📌' }} {{ $action['title'] }} @endforeach

Alur Proses

{{ $processSubtitle ?? 'Tahapan SOP utama untuk role ini.' }}

@foreach ($processStages as $stage)
{{ $loop->iteration }} {{ $stage['title'] }} {{ $stage['desc'] }}
@endforeach

Activity Log

5 perubahan terbaru dari sistem.

@forelse (($recentActivities ?? []) as $activity)
{{ $activity['icon'] ?? '📌' }}
{{ $activity['title'] ?? '-' }} {{ $activity['desc'] ?? '-' }}
{{ $activity['time'] ?? '-' }}
@empty
Belum ada activity log.
@endforelse
@push('styles') @endpush