Replies: 1 comment
-
I was able to get it like this: $response = $this->request->json()->all();
$forward_from_chat_id = $response['message']['forward_from_chat']['id'] ?? false; But I think it should be available like this: $forward_from_chat_id = $this->message->forward_from_chat->id ?? false; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
How to get the
forward_from_chat
parameter inWebhookHandler
, for example, in thehandleChatMessage
method?Beta Was this translation helpful? Give feedback.
All reactions