botman中的默认消息

时间:2019-06-14 12:12:40

标签: laravel chatbot

我正在Laravel中测试botman,并且效果很好。但是我找不到默认情况下如何放置消息。有人可以给我一个方向吗?

$botman->hears('Hi', function ($bot) {
    $bot->reply('Hello!');
});

1 个答案:

答案 0 :(得分:0)

BotMan允许您创建一个后备方法,如果您的“听觉”模式都不匹配,则会调用该方法。您可以使用此功能为bot用户提供有关如何使用bot的指南。

$botman->fallback(function($bot) {
$bot->reply('Sorry, I did not understand these commands. Here is a list of commands I understand: ...');

});