LaravelPackages.net
Acme Inc.
Toggle sidebar
yashveersingh/laravel-discord-notifier

858
2
v1.01
About yashveersingh/laravel-discord-notifier

yashveersingh/laravel-discord-notifier is a Laravel package. It currently has 2 GitHub stars and 858 downloads on Packagist (latest version v1.01). Install it with composer require yashveersingh/laravel-discord-notifier. Discover more Laravel packages by yashveersingh or browse all Laravel packages to compare alternatives.

Last updated

Laravel Discord Notifier

This package makes it easy to send notifications using the Discord webhook API with Laravel.

Installation

You can install the package via composer:

composer require yashveersingh/laravel-discord-notifier

Setting up your Discord bot

  • Add DISCORD_WEBHOOK=https://discord.com/api/webhooks/... in .env

Usage

use yashveersingh\laravelDiscordNotifier\DiscordNotifier;


$message = 'Hello From Webhook';
$discordNotifier = new DiscordNotifier();
$discordNotifier->setUserName('USERNAME');
$discordNotifier->send($message);

License

The MIT License (MIT). Please see LICENSE for more information.

Comments