Open kurtc opened 4 months ago
Trying this but it's not working. Please help
$message = new Message();
//- Add a notification -//
$message->notification
->setTitle($title)
->setBody($body);
$message->data->fill([
'title'=>$title,
'body'=>$body,
'navigate'=>'/calendar',
'apns' => [
'payload' => [
'aps' => [
'sound' => 'default'
]
]
]
]);
Is it possible to set 'sound' => 'default' using this repo please?
On iOS, notifications are not making a sound.
thanks.