我正在尝试使用davibennun/laravel-push-notification向 iOS 发送静默推送通知。我只想知道在哪里添加'content-available' => 1
。这是我的代码:
$notification = PushNotification::Message(
'Message.',
array(
'content-available' => 1,
'custom' => array('custom data' => array(
'customKey'=> 'customValue',
'abc' => '',
))
));