@php $notifications = $panelNotifications ?? collect(); $unreadCount = $panelUnreadNotificationCount ?? 0; $dropdownId = $dropdownId ?? 'panelNotificationsMenu'; $buttonClass = $buttonClass ?? ''; $alignmentClass = $alignmentClass ?? 'right-0'; @endphp
@if($unreadCount > 0) {{ $unreadCount > 9 ? '9+' : $unreadCount }} @endif

Notifications

{{ $unreadCount }} unread

@csrf
@forelse($notifications as $notification)
@csrf
@empty

No notifications yet

New lead, blog, and workflow updates will appear here.

@endforelse
@once @endonce