{{ $notification['title'] }}

@if (! blank($notification['description'] ?? null))
{{ $notification['description'] }}
@endif
@if (! blank($notification['view_all_url'] ?? null))
{{ $notification['view_all_label'] }}
@endif
@if (! empty($notification['items']))
@foreach ($notification['items'] as $item)
@if (! empty($item['avatar'])) @else @endif
{{ $item['title'] }} @if (! empty($item['time'])) {{ $item['time']->diffForHumans() }} @endif
@if (! blank($item['description'] ?? null))
{{ $item['description'] }}
@endif @if (! empty($item['meta']))
{{ $item['meta'] }}
@endif
@endforeach
@else
{{ $notification['empty_message'] }}
@endif