From 8a04dde51c6469d18f3b5376786c391b036cce22 Mon Sep 17 00:00:00 2001 From: Gerhard Kotze Date: Wed, 31 Jul 2024 23:58:17 +0200 Subject: [PATCH] Update README.md Update usage example to include sound setting for android and ios (apns). --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 2707504..d559b28 100644 --- a/README.md +++ b/README.md @@ -71,12 +71,18 @@ class AccountActivated extends Notification 'android' => [ 'notification' => [ 'color' => '#0A0A0A', + 'sound' => 'default', ], 'fcm_options' => [ 'analytics_label' => 'analytics', ], ], 'apns' => [ + 'payload' => [ + 'aps' => [ + 'sound' => 'default' + ], + ], 'fcm_options' => [ 'analytics_label' => 'analytics', ],