Package Data | |
---|---|
Maintainer Username: | benwilkins |
Maintainer Contact: | bentwilkins@gmail.com (Ben Wilkins) |
Package Create Date: | 2016-12-05 |
Package Last Update: | 2024-01-17 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-10-31 15:27:09 |
Package Statistics | |
---|---|
Total Downloads: | 860,562 |
Monthly Downloads: | 7,304 |
Daily Downloads: | 384 |
Total Stars: | 213 |
Total Watchers: | 9 |
Total Forks: | 91 |
Total Open Issues: | 29 |
Laravel FCM (Firebase Cloud Messaging) Notification Channel
Use this package to send push notifications via Laravel to Firebase Cloud Messaging. Laravel 5.3+ required.
This package works only with Legacy HTTP Server Protocol
This package can be installed through Composer.
composer require benwilkins/laravel-fcm-notification:dev-master
If installing on < Laravel 5.5 then add the service provider:
// config/app.php
'providers' => [
...
Benwilkins\FCM\FcmNotificationServiceProvider::class,
...
];
Add your Firebase API Key in config/services.php
.
return [
...
...
/*
* Add the Firebase API key
*/
'fcm' => [
'key' => ''
]
];
Use Artisan to create a notification:
php artisan make:notification SomeNotification
Return [fcm]
in the public function via($notifiable)
method of your notification:
public function via($notifiable)
{
return ['fcm'];
}
Add the method public function toFcm($notifiable)
to your notification, and return an instance of FcmMessage
:
use Benwilkins\FCM\FcmMessage;
...
public function toFcm($notifiable)
{
$message = new FcmMessage();
$message->content([
'title' => 'Foo',
'body' => 'Bar',
'sound' => '', // Optional
'icon' => '', // Optional
'click_action' => '' // Optional
])->data([
'param1' => 'baz' // Optional
])->priority(FcmMessage::PRIORITY_HIGH); // Optional - Default is 'normal'.
return $message;
}
When sending to specific device, make sure your notifiable entity has routeNotificationForFcm
method defined:
/**
* Route notifications for the FCM channel.
*
* @param \Illuminate\Notifications\Notification $notification
* @return string
*/
public function routeNotificationForFcm($notification)
{
return $this->device_token;
}
When sending to a topic, you may define so within the toFcm
method in the notification:
use Benwilkins\FCM\FcmMessage;
...
public function toFcm($notifiable)
{
$message = new FcmMessage();
$message->to('the-topic', $recipientIsTopic = true)
->content([...])
->data([...]);
return $message;
}
Or when sending with a condition:
use Benwilkins\FCM\FcmMessage;
...
public function toFcm($notifiable)
{
$message = new FcmMessage();
$message->contentAvailable(true)
->priority('high')
->condition("'user_".$notifiable->id."' in topics")
->data([...]);
return $message;
}
To proccess any laravel notification channel response check Laravel Notification Events
This channel return a json array response:
{
"multicast_id": "number",
"success": "number",
"failure": "number",
"canonical_ids": "number",
"results": "array",
}
Check FCM Legacy HTTP Server Protocol for response interpreting documentation.
The MIT License (MIT). Please see License File for more information.