laracord / framework

A Discord bot micro-framework powered by Laravel.
https://laracord.com
MIT License
33 stars 10 forks source link

✨ Add support for polls #108

Closed Log1x closed 1 month ago

Log1x commented 3 months ago

In preparation for https://github.com/discord-php/DiscordPHP/pull/1226

Example usage:

$this
    ->message()
    ->poll('What is your favorite color?', [
        '🔴' => 'Red',
        '🟢' => 'Green',
        '🔵' => 'Blue'
    ], duration: 24, multiselect: true)
    ->reply($message);