• @php use App\Models\EventComments; $comments = EventComments::query()->where('read_unread_status',0) ->latest() ->take(5) ->get(); $count = EventComments::query()->where('read_unread_status',0)->count(); @endphp
  • {{ $count }}
    {{ $count }} Notifications
    @forelse($comments as $comment) {{ Str::limit($comment->title, 50) }} {{ $comment->created_at->diffForHumans() }}
    @empty No new notifications @endforelse