//////////////////// method in controller ////////////////////
public function sendnotification(){
$registrationIds= array();
$recipients = Fcm_info::select('token')->get();
for ($i = 0, $c = count($recipients); $i < $c; ++$i) {
array_push($registrationIds, $recipients[$i]['token']);
fcm()
->to($registrationIds) // $recipients must an array
->priority('normal')
->notification([
'title' => 'Test FCM',
'body' => 'This is a test of FCM',
])
->send();
}
}
//////////////////// route ////////////////////
Route::get('/sendnotification','FcmController@sendnotification')->name('sendnotification');