I am using following package to send notifications to broswers.
The code to send Notifications,
fcm()
->to($recipients) // $recipients must an array
->notification([
'title' => 'Test FCM',
'body' => 'This is a test of FCM',
])
->send();
This is working fine for browser.
Question: can the $recipients array contain both types i,e, device tokens (Android & iOS) and browsers(FF & Chrome) Tokens ?