We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d3e4f3 commit e8879f0Copy full SHA for e8879f0
readme.md
@@ -86,8 +86,13 @@ FCM_SERVER_KEY=putYourKeyHere
86
If You want to send a FCM with just notification parameter, this is an example of usage sending a FCM with only data parameter :
87
88
```php
89
+$recipients = [
90
+ 'clKMv.......',
91
+ 'GxQQW.......',
92
+];
93
+
94
fcm()
- ->to($recipients) // $recipients must an array
95
+ ->to($recipients)
96
->priority('high')
97
->timeToLive(0)
98
->data([
0 commit comments