Replies: 1 comment
-
Hi, you should use a webhook to accomplish what you are saying |
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
-
I have action buttons in Handler
public function addNumbers()
{
$this->chat
->message('Choose a provider')
->keyboard(
Keyboard::make()->buttons(
[
Button::make('🔵 Telegram')->action('addNumbersSalesmen')->param('name', 1),
Button::make(' WhatsApp')->action('addNumbersSalesmen')->param('name', 2),
])
)
->send();
}
How can I add the ability for the client to write his number for processing in the addNumbersSalesmen function?
I can’t yet figure out where this is in the documentation
please tell me
I write in Laravel framework
Beta Was this translation helpful? Give feedback.
All reactions