Download the PHP package rubik-llc/laravel-notification-manager without Composer

On this page you can find all versions of the php package rubik-llc/laravel-notification-manager. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-notification-manager

Laravel notification manager

Platform Latest Version on Packagist GitHub Workflow Status Check & fix styling GitHub all releases

In addition to Laravel’s default notifications, this package adds further attributes like seen_at, is_prioritised, is_muted, preview_type and alert_type. These attributes can be used to classify notifications for a better user experience. Furthermore, using this package you can manage subscriptions to certain notifications based on user preference, meaning that a user can specify whether or not to receive a certain notification type, channel or even a specific notification.

Features

Installation

You can install the package via composer:

You can publish and run the migrations with:

You can publish the config file with:

This is the contents of the published config file:

Usage

  1. Use our “Notifiable” trait in all models you wish to send notifications(most cases Users)
    • This can be done by changing the import from “use Illuminate\Notifications\Notifiable;” to “use Rubik\NotificationManager\Traits\Notifiable;”, and also if not yet use the trait “use Notifiable”;. Your model should look like
  2. Use HasNotificationSubscription trait in all models you wish to send notifications
  3. Create subscribale notification by using “-s” flag in the default artisan command to create a notification.
  4. Add this notification to config file

From now on everything is the same as a normal notification. Below you can see how your Model and Notification should look like:

If you want to convert a notification to a subscribable notification all you have to do is add SubscribaleNotification Contract and implement all methods required, and use SubscribaleNotification trait. Do not forget to add this notifion to your config. Your notification should look like:

All changes will affect only future notifications, and if not specified different changes will affect the desired notification of the authenticated user. Will be explained below.

Subscribers/Unsubscribe

Subscribe to a notification:

or:

Unsubscribe to a notification:

or:

Subscribe a user to a notification:

Unsubscribe a user to a notification:

Subscribe to all notifications:

Unsubscribe to all notifications:

Subscribe a user to all notifications:

Unsubscribe a user to all notifications:

Send notification to all subscribers:

Instead of using:

Use:

Everything passed to send to subscriber will be passed to notification constructor.

Priority

Set priority to a notification:

or:

Unset priority to a notification:

or:

Set priority to a notification as a user:

Unset priority to a notification as a user:

Mute

Mute a notification:

or:

Unmute a notification:

or:

Mute a notification for a user:

Unmute a notification for a user:

Alert type

Set/update alert type:

or:

Available alert types:

those are only values and in no way they represent a logic. You can use those values to classify notifications.

Preview type

Set/update preview type:

or:

Available alert types:

Seen

Mark as seen

or:

or:

or:

Mark as unseen

or:

or:

or:

Get all seen notifications:

Get all unseen notifications:

Get all prioritized notifications:

Get all trivialized notifications:

Get all muted notifications:

Get all unmuted notifications:

Get all notifications with alert type set to 'notification-center':

Get all notifications with alert type set to 'banner':

Get all notifications with alert type set to 'lock-screen':

Get all notifications with preview type set to 'always':

Get all notifications with preview type set to 'when-unlocked':

Get all notifications with preview type set to 'never':

Check if a notification is seen:

Check if a notification is unseen:

Check if a notification is prioritised:

Check if a notification is trivialised:

Check if a notification is muted:

Check if a notification is unmuted:

Testing

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-notification-manager with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
spatie/laravel-package-tools Version ^1.9.2
illuminate/contracts Version ^9.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package rubik-llc/laravel-notification-manager contains the following files

Loading the files please wait ....