Telegraph is a Laravel package for fluently interacting with Telegram Bots made by def:studio
Telegraph::message('hello world')
->keyboard(Keyboard::make()->buttons([
Button::make('Delete')->action('delete')->param('id', '42'),
Button::make('open')->url('https://test.it'),
]))->send();
You can install the package via composer:
composer require defstudio/telegraph
Publish and launch required migrations:
php artisan vendor:publish --tag="telegraph-migrations"
php artisan migrate
Optionally, you can publish the config and translation file with:
php artisan vendor:publish --tag="telegraph-config"
php artisan vendor:publish --tag="telegraph-translations"
After a new bot is created and added to a chat/group/channel (as described in our documentation),
the Telegraph
facade can be used to easily send messages and interact with it:
Telegraph::message('this is great')->send();
An extensive documentation is available at
https://docs.defstudio.it/telegraph
composer test
Please see CHANGELOG for more information on what has changed recently. Follow Us on Twitter for more updates about this package.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
- Fabio Ivona
- def:studio team
- Andrea Marco Sartori for his cool ideas
- Alberto Pieripolli Pest badge
- Joris Drenth Docs fix and upgrade
- All Contributors
- Tievo Spanish
- Andrey Helldar Russian
- Joris Drenth Dutch
- Moayed Alhagy Arabic
- Rafael Portuguese
The MIT License (MIT). Please see License File for more information.