@extends('layouts.account') @section('page-title', 'Notifications') @section('content')
@foreach($notifications as $notification)

Notification: {{ $notification->notification ?? ''}}

{{ $notification->receiver_user->name ?? '' }} {{ $notification->sender_user->name ?? '' }}
@endforeach @if ($unreadMessagesCount > 0)

You have {{ $unreadMessagesCount }} unread messages.

@endif
@endsection @section('js') @endsection