Download the PHP package dmiseev/laravel-telegram-notification without Composer
On this page you can find all versions of the php package dmiseev/laravel-telegram-notification. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download dmiseev/laravel-telegram-notification
More information about dmiseev/laravel-telegram-notification
Files in dmiseev/laravel-telegram-notification
Package laravel-telegram-notification
Short Description Telegram Notification for Laravel framework
License MIT
Informations about the package laravel-telegram-notification
Telegram Notifications for Laravel 5.6
This package makes it easy to send Telegram notification using Telegram Bot API with Laravel 5.5.
Installation
You can install the package via composer:
Setting up your Telegram Bot
Talk to @BotFather and generate a Bot API Token.
Then, configure your Telegram Bot API Token:
Usage
You can now use the channel in your via()
method inside the Notification class.
Routing a message
You can either send the notification by providing with the chat id of the recipient to the to($chatId)
method like shown in the above example or add a routeNotificationForTelegram()
method in your notifiable model:
Available Message methods
to($chatId)
: (integer) Recipient's chat id.content('')
: (string) Notification message, supports markdown. For more information on supported markdown styles, check out these docs.button($text, $url)
: (string) Adds an inline "Call to Action" button. You can add as many as you want and they'll be placed 2 in a row.options([])
: (array) Allows you to add additional or overridesendMessage
payload (A Telegram Bot API method used to send message internally). For more information on supported parameters, check out these docs.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-telegram-notification with dependencies
guzzlehttp/guzzle Version ^6.2
illuminate/notifications Version *
illuminate/support Version *