Back to dashboard
Tasks to be done
Your actionable work queue — meetings, signatures, forwards, approvals, and returns — in one place.
{{ number_format($pendingCount) }}
open pending tasks
{{ $activeMeta['label'] }}
{{ $activeMeta['hint'] }} · {{ count($items) }} shown
All notifications
@if (count($items) === 0)
Nothing here
@if ($selectedBucket === 'pending')
You’re all caught up — no pending tasks right now.
@else
No {{ strtolower($activeMeta['label']) }} items in the recent window.
@endif
@else
@foreach ($items as $item)
@php
$href = trim((string) ($item['action_url'] ?? ''));
$badge = (string) ($item['badge'] ?? $item['kind_label'] ?? '');
$badgeTone = (string) ($item['badge_tone'] ?? 'awaiting');
$icon = (string) ($item['icon'] ?? 'fa-bell');
$iconClass = (string) ($item['icon_class'] ?? 'dd-pending-icon--other');
$tag = $href !== '' ? 'a' : 'div';
@endphp
<{{ $tag }}
@if ($href !== '') href="{{ $href }}" @endif
class="dd-tasks-page__row"
>
{{ $item['title'] ?? 'Task' }}
@if (! empty($item['message']))
{{ $item['message'] }}
@endif
@if ($badge !== '')
{{ $badge }}
@endif
@if (! empty($item['return_to']))
Return to: {{ $item['return_to'] }}
@endif
@if (! empty($item['occurred_at_formatted']))
{{ $item['date_label'] ?? 'Submitted' }}: {{ $item['occurred_at_formatted'] }}
@endif
@if ($href !== '')
@endif
{{ $tag }}>
@endforeach
@endif