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 19c76cc commit 3051be6Copy full SHA for 3051be6
readme.md
@@ -147,3 +147,18 @@ fcm()
147
])
148
->send();
149
```
150
+
151
+### Logging
152
153
+To see the original response from Firebase, call `enableResponseLog()` method before calling the `send()` method.
154
155
+```php
156
+fcm()
157
+ ->to($recipients)
158
+ // ...
159
+ ->enableResponseLog()
160
+ ->send();
161
162
+```
163
164
+Then you can check the response log in the file `storage/logs/laravel.log`
0 commit comments