{{ translate('Notifications') }}
@if (!$notifications->count())
{{ translate('No notification Available') }}
@endif @foreach ($notifications as $notification)
Thumbnail image
{{ $notification?->data['title'] }} {!! clean(isset($notification?->data['message']) ? $notification?->data['message'] : '') !!}
{{ $notification?->created_at?->diffForHumans(['options' => 0]) }}
@endforeach
@if ($notifications->count() > 0) {{ translate('View all') }}
{{ translate('Mark all as read') }}
@endif