@if(session('success'))
{{ session('success') }}
@endif

All Notifications

@csrf
@forelse($notifications as $n) @empty @endforelse
Title Message Attachments Status Received Action
{{ $n->title }} {{ \Illuminate\Support\Str::limit($n->message, 80) }} @forelse($n->attachments as $att) {{ basename($att->path) }} @empty @endforelse @if($n->pivot->is_read) Read @else Unread @endif {{ $n->created_at->format('d M Y H:i') }} View @if($n->pivot->is_read)
@csrf
@else
@csrf
@endif
No notifications.
{{ $notifications->links() }}