kawankoding/laravel-fcm

polish chars problem

binar123 opened this issue · 1 comments

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();

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();