laravel-notification-channels / fcm

Firebase Cloud Messaging (FCM) notifications channel for Laravel
https://laravel-notification-channels.com/
MIT License
495 stars 127 forks source link

How to set Notification Badge? #20

Closed timleland closed 4 years ago

timleland commented 4 years ago

I see that older version of the package support setBadge() but I do not see a way to setBadge in the latest version. Am I missing something?

vonec commented 4 years ago

you can set badge, refer https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages

you need to create an array similar to the json

chrisbjr commented 4 years ago

Hi @timleland, @vonec is right, the badge variable has been removed and I believe it has been replaced with notification_count. You can use the setNotificationCount() method for this when setting the AndroidNotification object.