@if ($notifications['unread'])
{{ $notifications['unread'] > 9 ? '9+' : $notifications['unread'] }}
@endif

{{ admin_trans('Notifications') }} ({{ $notifications['unread'] }})

@if ($notifications['unread'] > 0) {{ admin_trans('Mark All as Read') }} @else {{ admin_trans('Mark All as Read') }} @endif
@forelse ($notifications['list'] as $notification) @if ($notification->link)
{{ $notification->title }}

{{ shorterText($notification->title, 30) }} @if (!$notification->status) @endif

{{ $notification->created_at->diffforhumans() }}

@else
{{ $notification->title }}

{{ shorterText($notification->title, 30) }} @if (!$notification->status) @endif

{{ $notification->created_at->diffforhumans() }}

@endif @empty
{{ admin_trans('No notifications found') }}
@endforelse
{{ admin_trans('View All') }}