// getting a list of all notifications of the current logged in user
$this->Notifier->getNotifications();
// getting a list of all notifications of the user with id c72da51b-16c8-4741-8646-2e45721b3272
$this->Notifier->getNotifications('c72da51b-16c8-4741-8646-2e45721b3272');
// getting a list of all unread notifications
$this->Notifier->allNotificationList('c72da51b-16c8-4741-8646-2e45721b3272', true);
// getting a list of all read notifications
$this->Notifier->allNotificationList('c72da51b-16c8-4741-8646-2e45721b3272', false);
// getting a number of all notifications of the current logged in user
$this->Notifier->countNotifications();
// getting a number of all notifications of the user with id c72da51b-16c8-4741-8646-2e45721b3272
$this->Notifier->countNotifications('c72da51b-16c8-4741-8646-2e45721b3272');
// getting a number of all unread notifications
$this->Notifier->countNotificationList('c72da51b-16c8-4741-8646-2e45721b3272', true);
// getting a number of all read notifications
$this->Notifier->countNotificationList('c72da51b-16c8-4741-8646-2e45721b3272', false);
// mark a single notification as read
$this->Notifier->markAsRead(500);
// mark all notifications of the given user as read
$this->Notifier->markAsRead(null, 'c72da51b-16c8-4741-8646-2e45721b3272');
// returns true or false
$entity->get('unread');
// returns the full output like 'Bob Mulder has posted a new blog named My Great New Post'
$entity->get('body');