Evgeni Razumov

Results 11 comments of Evgeni Razumov

@willvincent It's planned in next release. At the moment, it was necessary to provide support for adonis framework 4.1.x. Thanks for feedback.

Show your code in routeNotificationForFCM and your notification file. I need to test your code.

You tryed array of tokens? ```php public function routeNotificationForFCM() { return PushToken::where('user_id', $this->id)->pluck('token')->toArray(); } ```

You used routeNotificationForFCM or routeNotificationForFcm method?

You can show output from `dd(PushToken::where('user_id', $this->id)->pluck('token')->toArray())` ?

I'm tried send notification and all works: ```php // notifiable model

Maybe ```php public function routeNotificationForFCM() { return PushToken::where('user_id', $this->id)->whereNotNull('token')->pluck('token')->toArray(); } ```