Download the PHP package technovistalimited/notific without Composer
On this page you can find all versions of the php package technovistalimited/notific. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download technovistalimited/notific
More information about technovistalimited/notific
Files in technovistalimited/notific
Package notific
Short Description Laravel simple, static and minimal notification system
License GPL-2.0+
Informations about the package notific
🔔 Notific
Notific is a simple, and minimal, static notification system for Laravel. It stores notification data based on user_id, and fetch notifications for the user_id. It's not that feature rich.
The package has no UI, it just a database based cached data-driven mechanism of organized methods. You have to build you own UI.
License: GPL-2.0+
Requires: Laravel 5.8
Tested up to: Laravel 8.x
Developers: Mayeenul Islam, Nazmul Hasan
The package is developed for the organization's internal use only. If it helps you, that's why it's here. We might not support the package full throttle. But bug reports are welcome.
Table of Contents
- Features
- Installation
- Step 1: Download & Setup
- Providers array
- Aliases array
- Step 2: Publish the Necessary files
- Step 3: Make tables ready
- Step 1: Download & Setup
- Configuration
- Cache status
- Cache time
- API: How to use
- Store notification
- Get notifications
- Get notification count
- Mark notification as read
- Examples
- 01. Create a notification
- 02. Get notifications
- 03. Get notification count
- 04. Mark notification as read
- 05. Maybe Unserialize
- Contributions
- Uninstallation
- Credits
Features
- Database table creation using migration
- Store notifications into the database
- Fetch notifications from the database
- Store and fetch any types of additional information for notification with metadata
- Cached data to save some valuable resources - configurable
Features that are not present:
- Event listener and real-time notification (but you can easily extend into those)
Installation
Step 1: Download & Setup
Open up the command console on the root of your app and run:
Providers array
Add the following string to the config/app.php
under providers
array:
Aliases array
Add the following line to the config/app.php
under aliases
array:
Step 2: Publish the Necessary files
Make the configuration and migration files ready first; in the command console, type and hit enter:
Step 3: Make tables ready
Open up the command console on the root of your app and run the migrations:
Configuration
Change configuration in config/notific.php
.
Cache status
Set whether to use the cache or not, under 'cache' => ['is_cache']
. Accepted value: true
(enabled), false
(disabled)
Default: true - enabled
Cache time
Change the time under 'cache' => ['cache_time']
. Accepted value: any positive integer to denote seconds.
Default: 10 minutes
API: How to use
If you defined the helper class correctly, the package is easy to use:
Store notification
To store notification, simply place the following method where you want to plug it into. The method will also clear the cache for the user to update the notification history.
$userID : integer/array
User ID or array of user IDs to notify.$message : string
The message with which you want to notify with.$notificationType : string : (optional)
The notification type if you have any, other than notification.
default:'notification'
$metaData : integer/string/array : (optional)
Whatever additional information you want to pass with. Whether pass them as integer, string or as an array.
default: empty$createdBy : integer : (optional)
If you want to keep trace who issued the notification.
default: empty
Get notifications
Get the notifications by user ID.
$userID : integer
User ID for which to fetch the notifications.$arguments : array : (optional)
Array of Query parameters. default:array()
- fetch notifications based on default settings$read_status : string
The notification read status. Accepts:'all'
,'read'
,'unread'
.
default:'all'
$order : string
Designates ascending or descending order of notifications. Accepts'ASC'
,'DESC'
.
default:'DESC'
$orderby : string
Sort retrieved posts by parameter. Single option can be passed. Accepts any valid column name from db table.
_default:'created_at'
_$paginate : boolean
Whether to enable pagination or not.
default:false
- pagination DEactivated$items_per_page : integer
Fetch the number of items. Accepts any positive integer.
default:-1
- fetch everything
Get notification count
Get the total count of notifications by user ID.
$userID : integer
User ID for which to fetch the notifications.$status : string : (optional)
The notification read status. Accepts:'all'
,'read'
,'unread'
.
default:all
- fetch all the notification count
Mark notification as read
Mark the notification as read when actually they are. You might need AJAX to mark them read on the fly.
$userID : integer
User ID to mark the notification as read for.$notificationId : integer : (optional)
If you want to mark each of the notification as read, pass the notification ID
default: empty - mark all as read
Examples
01. Create a notification
With the following examples, a user with the ID 21
will be notified accordingly:
02. Get notifications
With the following examples, we're fetching the notifications assigned to a user with ID 21
:
03. Get notification count
With the following examples, we're fetching the count of notifications assigned to a user with ID 21
:
04. Mark notification as read
05. Maybe Unserialize
Adopted from WordPress, this function can detect whether to unserialize a string or not and serialize, if it's a serialized data. If you make custom methods, you might need to convert the serialized meta data back into array - this method will help you then.
Contributions
Any bug report is welcome. We might not support the package as you might require. But we will definitely try to fix the bugs as long as they meet our leisure.
If you want to contribute code, feel free to add Pull Request.
Uninstallation
- Search the whole project of any declaration of
Notific::
, and remove the functions from the source, or comment them out. Otherwise, they will generate a fatal error after uninstallation. - Open
config/app.php
and remove the line...NotificServiceProvider::class
underproviders
andaliases
array. - Remove the configuration file
notific.php
inconfig/notific.php
- Remove the notific migration files from
database/migrations/
- Delete the two database tables manually (as the package is not released): table:
notifications
, and table:user_notifications
Now, open up the command console, and type:
You are done!
Credits
All the credit goes to the almighty God first. Thanks to Mr. Amiya Kishore Saha who let both of us make our first Laravel package. Thanks to Mr. Kamrul Hasan for reviewing the progress and suggesting his ideas. And thanks to TechnoVista Limited for supporting the initiative. Thanks to Notifynder - a Laravel notification package available at Packagist from Fabrizio - we followed them to learn. Thanks to WordPress - a GPL licensed web framework - we took some of their code thankfully.