{{ __('dashboard.General Notifications') }}
@foreach($notifications as $notification)
@php
$isSeen = $notification->isSeenBy(auth()->id());
@endphp
@if(!$isSeen)
@endif
@endforeach
@if(($notifications)->isEmpty())
@endif
@if($notification->is_image)
@elseif($notification->attachment)
@else
@endif
{{ $notification->title }}
{{ $notification->created_at->diffForHumans() }}
{{ Str::limit(strip_tags($notification->description), 100) }}
{{ __('dashboard.No notifications found.') }}
{{ $notifications->links() }}