Notifications
@if($notifications->count() > 0)
@foreach($notifications as $notification)
@if(!$notification->read_at)
@endif
{{ $notification->title }}
{{ $notification->created_at->diffForHumans() }}
{{ $notification->message }}
@if($notification->data)
@endif
@if(!$notification->read_at)
@endif
@endforeach
{{ $notifications->links() }}
@else
No notifications
You're all caught up! No new notifications at the moment.
@endif