A basic notification feed for laravel 5+.
Below is some example code of all of the basic methods for the package.
$user = User::find(1);
$team = Team::find(1);
// Push notification to a user
$feed->push('This is a new notification', $user);
// Push notification to a user, and a team of users
$feed->push('This is a new notification', [$user, $team]);
// Push notification to a user with multiple parameters
$feed->push([
'icon' => 'icon-alert',
'title' => 'Something Broke!',
'body' => 'Something super important broke'
], $user);
// Get all of the notifications for a user
$notifications = $feed->pull($user);
// Get 10 notifications for the user
$notifications = $feed->limit(10)->pull($user);
// Mark a notification as read
$feed->markAsRead($notification);This package requires at least laravel 5.
To install through composer include the package in your composer.json.
"michaeljennings/feed": "0.1.*"
Run composer install or composer update to download the dependencies, or you can run composer require michaeljennings/feed.
Once installed add the service provider to the providers array in config/app.php.
'providers' => [
Michaeljennings\Feed\FeedServiceProvider::class
];The package comes with migrations to setup the default database structure. We recommend using the migration and adding any columns as needed.
To publish the migrations run php artisan vendor:publish.
Once installed you can access the feed in multiple ways.
Firstly you can dependency inject it from the IOC container by either the push or pull feed interfaces. Both interfaces will return the same instance, it's just to make your code more readable.
public function __construct(
Michaeljennings\Feed\Contracts\PullFeed $pullFeed,
Michaeljennings\Feed\Contracts\PushFeed $pushFeed
) {
$this->pullFeed = $pullFeed;
$this->pushFeed = $pushFeed;
}Or you there is a feed helper method.
$feed = feed();Or if you want to use the facade you can register it in the aliases array in config/app.php.
'aliases' => [
'Feed' => Michaeljennings\Feed\Facades\Feed::class
]To set up a notifiable model you just need to implement the notifiable interface, and then use the notifiable trait in your model.
This will set up the required relationships.
use Michaeljennings\Feed\Contracts\Notifiable as NotifiableContract;
use Michaeljennings\Feed\Notifications\Notifiable;
class User extends Model implements NotifiableContract
{
use Notifiable;
}It is also possible to set up groups of notifiable models, an example of when this would be useful is having a team of users. This will allow us to push a notification to all the members of that group.
To set up a notifiable group you need implement the notifiable group interface on the group model. This will add a method called getGroup which requires you to return the members you would like to be notified.
In the example below we have a team model which implements the group interface. It has a users relationship which returns all of the users belonging to the team. Then in the getGroup method we simply return the users.
use Michaeljennings\Feed\Contracts\NotifiableGroup;
class Team extends Model implements NotifiableGroup
{
public function users()
{
return $this->hasMany('App\User');
}
public function getGroup()
{
return $this->users;
}
}Below is a list of all of the currently available notification methods. If you think of anything you want to add please feel free to create an issue, or a pull request.
The push method allows you to push a notification to a notifiable model, multiple notifiable models, or a notifiable group.
When pushing to a notifiable group each member of the group will get their own notification, it will not share one notification for all of the members.
$feed->push('My awesome notification', $user);
$feed->push('My awesome notification', [$user, $team]);
$feed->push([
'title' => 'New Notification',
'body' => 'My awesome notification'
], $user);When the notification is pushed a NotificationAdded event will be fired.
You can then listen for this and then broadcast the notification, send an email etc.
You just need to register the listeners in the event service provider.
protected $listen = [
'Michaeljennings\Feed\Events\NotificationAdded' => [
'App\Listeners\BroadcastNotification',
'App\Listeners\EmailNotification',
],
];The pull method gets all of the unread notifications for the notifiable models you pass it.
$feed->pull($user);You can also limit and offset the notifications but using the limit and offset methods respectively.
$feed->limit(10)->pull($user);
$feed->limit(10)->offset(1)->pull($user);To get all of the read notifications for a member, use the pullRead method.
$feed->pullRead($user);You can also limit and offset the read notifications but using the limit and offset methods respectively.
$feed->limit(10)->pullRead($user);
$feed->limit(10)->offset(1)->pullRead($user);To mark a notification as read you can either use the markAsRead method, or it is aliased to read if you prefer.
$feed->markAsRead($notification);
$feed->read($notification);When the notification is read marked as read a NotificationRead event will be fired.
You can then listen for this and then broadcast it etc.
protected $listen = [
'Michaeljennings\Feed\Events\NotificationRead' => [
'App\Listeners\BroadcastReadNotification',
],
];To mark a notification as unread you can either use the markAsUnread method, or it is aliased to unread if you prefer.
$feed->markAsUnread($notification);
$feed->unread($notification);When the notification is read marked as unread a NotificationUnread event will be fired.
You can then listen for this and then broadcast it etc.
protected $listen = [
'Michaeljennings\Feed\Events\NotificationUnread' => [
'App\Listeners\BroadcastUnreadNotification',
],
];