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 f63ff9f commit fa58b21Copy full SHA for fa58b21
1 file changed
docs/cloud-messaging.rst
@@ -280,7 +280,7 @@ are both optional.
280
281
$title = 'My Notification Title';
282
$body = 'My Notification Body';
283
- $imageUrl = 'https://picsum.photos/400/200';
+ $imageUrl = 'https://example.com/image.jpg';
284
285
$notification = Notification::fromArray([
286
'title' => $title,
@@ -293,7 +293,7 @@ are both optional.
293
$changedNotification = $notification
294
->withTitle('Changed title')
295
->withBody('Changed body')
296
- ->withImageUrl('https://picsum.photos/200/400');
+ ->withImageUrl('https://example.com/image.jpg');
297
298
Once you have created a message with one of the methods described below,
299
you can attach the notification to it:
0 commit comments