semantechs / notification
Notification agent to handle all kind of notification with pusher
Requires
- kreait/laravel-firebase: ^5.9
- pusher/pusher-php-server: ^7.2
README
Open composer.json and add following line
"autoload": {
....
"psr-4": {
....
"Sementechs\\Notification\\": "vendor/semantechs/notification/src/"
}
},
Open app.php in config folder and add following line
'providers' => ServiceProvider::defaultProviders()->merge([
....
Sementechs\Notification\NotificationServiceProvider::class,
])->toArray(),
Place your firebase service account file in storage folder and add file name in .env file
FIREBASE_CREDENTIALS=file_name.json
BROADCAST_DRIVER=puhser
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_HOST=
PUSHER_PORT=443
Run following commands
composer dump-autoload
php artisan vendor:publish --tag=laravel-assets
php artisan migrate
Available Methods
- Send Notification
$notificationObject = [ 'sender_id' => 1, 'receiver_ids' => [ 1, 2, 3 ], 'channel' => 'web', // web, mobile 'body' => [ 'title' => 'Title', 'body' => 'Detail' ], 'type' => 'admin' // admin, user ];
NotificationController::sendNotification($notificationObject);
- Get All Notification
$type = web/user
NotificationController::getAllNotifications($type, $userId)
- Read All Notifications
$data = objects of all notifications
NotificationController::readAll($data)