kawankoding / laravel-fcm

Firebase Cloud Messaging (FCM) sender for Laravel
172 stars 56 forks source link

polish chars problem #15

Closed binar123 closed 5 years ago

binar123 commented 5 years ago

hi everything works fin but when im sending text with polish characters message is not sending is it possible to make some kind of debug on this fascade ? send function

 FcmFacade::toTopic(env('FCM_TOPIC'))
        ->notification($data)
            ->send();
erlangparasu commented 1 year ago

Hi @binar123, maybe you can try to enable debug response. then check the firebase log in the laravel.log file.

fcm()
    ->to($recipients)
    // ...
    ->enableResponseLog()
    ->send();