Fenos\Notifynder\NotifynderManager::getNotRead PHP Method

getNotRead() public method

Get Notifications not read of the given entity.
public getNotRead ( $toId, null $limit = null, null | integer $paginate = null, string $order = 'desc', Closur\Closure $filterScope = null ) : mixed
$toId
$limit null
$paginate null | integer
$order string
$filterScope Closur\Closure
return mixed
    public function getNotRead($toId, $limit = null, $paginate = null, $order = 'desc', Closure $filterScope = null)
    {
        $notifications = $this->notification->entity($this->entity);
        return $notifications->getNotRead($toId, $limit, $paginate, $order, $filterScope);
    }