|
@@ -202,9 +202,12 @@ class TelegramWebHook extends Controller
|
|
|
case "投注大群":
|
|
|
Util::delCache($chatId);
|
|
|
$text = "👇👇👇点击下方按钮进群投注👇👇👇\n";
|
|
|
+ $keyboard = [];
|
|
|
+ $keyboard[] = [['text' => '✅ 投注群', 'callback_data' => "games@@cancel"]];
|
|
|
$this->telegram->sendMessage([
|
|
|
'chat_id' => $chatId,
|
|
|
- 'text' => $text
|
|
|
+ 'text' => $text,
|
|
|
+ 'reply_markup' => json_encode(['inline_keyboard' => $keyboard])
|
|
|
]);
|
|
|
break;
|
|
|
default:
|