Skip to content

fondbot/fondbot.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

home heroImage actionText actionLink features footer
true
/logo.svg
Get Started →
/guide/v3/
title details
Advanced Dialog System
Build complex dialogs with an ease
title details
Code once, run everywhere
Single API for all supported platforms
title details
Laravel-Powered
Built on top of powerful Laravel framework.
MIT Licensed | Copyright © 2017-present Vladimir Yuldashev
class Weather extends Intent
{
    public function activators(): array
    {
        return [
            Exact::make('/weather'),
            Exact::make('Tell me the weather for today'),
        ];
    }

    public function run(ReceivedMessage $message): void
    {
        $this->reply('Weather is nice today.');
    }
}

Releases

No releases published

Packages

No packages published