LARAVEL SOURCE
Install library fcm/kawancoding
$recipients = [
'caHT8m68SKOF****'
];
return fcm()
// ->toTopic('all') // $topic must an string (topic name)
->to($recipients)
->priority('high')
->timeToLive(0)
->notification([
'title' => 'Test FCM',
'body' => 'This is a test of FCM2',
])
->data([
'msgId' => '1',
])
// ->enableResponseLog()
->send();