@php use Illuminate\Support\Str; @endphp @forelse($notifications as $notify)
{{ $notify->title ?? 'Notification' }}
{{ $notify->read_at ? 'Read' : 'New' }}

{{ Str::limit($notify->message, 80) }}

@empty

No notifications

@endforelse