PHPackages                             difftechnology/notifynder - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. difftechnology/notifynder

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

difftechnology/notifynder
=========================

Management system of internal notifications for Laravel 5.\*

032PHP

Since Jan 19Pushed 9y ago1 watchersCompare

[ Source](https://github.com/difftechnology/Notifynder)[ Packagist](https://packagist.org/packages/difftechnology/notifynder)[ RSS](/packages/difftechnology-notifynder/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Installation
------------

[](#installation)

### Step 1

[](#step-1)

Add it on your `composer.json`

```
"difftechnology/notifynder": ""

```

and run

```
composer update

```

### Step 2

[](#step-2)

Add the following string to `config/app.php`

**Providers array:**

```
Difftechnology\Notifynder\NotifynderServiceProvider::class,

```

**Aliases array:**

```
'Notifynder'=>Difftechnology\Notifynder\Facades\Notifynder::class,

```

### Step 3

[](#step-3)

#### Migration

[](#migration)

Publish the migration as well as the configuration of notifynder with the following command:

```
php artisan vendor:publish --provider="Difftechnology\Notifynder\NotifynderServiceProvider"

```

Run the migration

```
php artisan migrate

```

### Quick Usage

[](#quick-usage)

Set up category of notification, think about it as the body of the notification:

```
php artisan notifynder:create:category "user.following" "{from.username} started to follow you"

```

To send a notification with notifynder, that's all you have to do.

```
Notifynder::category('user.following')
            ->from($from_user_id)
            ->to($to_user_id)
            ->url('http://www.yourwebsite.com/page')
            ->send();
```

**Retrieving Notifications**

```
// @return Collection
Notifynder::getAll($user_id,$limit,$paginateBool);
```

**Reading Notifications:**

```
// @return number of notifications read
Notifynder::readAll($user_id);
```

To know more, such as the advance usage of Notifynder Visit the **[Notifynder Wiki](https://github.com/fenos/Notifynder/wiki)**.

Forked from fenos/Notifynder

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/93066?v=4)[Ole Marius Smestad](/maintainers/oms)[@oms](https://github.com/oms)

---

Top Contributors

[![vishnuoms](https://avatars.githubusercontent.com/u/22490012?v=4)](https://github.com/vishnuoms "vishnuoms (16 commits)")

### Embed Badge

![Health badge](/badges/difftechnology-notifynder/health.svg)

```
[![Health](https://phpackages.com/badges/difftechnology-notifynder/health.svg)](https://phpackages.com/packages/difftechnology-notifynder)
```

###  Alternatives

[mattketmo/email-checker

Throwaway email detection library

2752.1M5](/packages/mattketmo-email-checker)[sarfraznawaz2005/noty

Laravel package to incorporate noty flash notifications into laravel.

324.5k](/packages/sarfraznawaz2005-noty)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
