Looking to hire Laravel developers? Try LaraJobs

laravel-notification-channel maintained by issuebadge

Description
Send developer recognition badges via IssueBadge.com using Laravel Notifications
Author
Last update
2025/07/01 08:03 (dev-main)
License
Links
Downloads
1

Comments
comments powered by Disqus

Laravel Notification Channel for IssueBadge

Send recognition badges to users directly from your Laravel application using IssueBadge.

Installation

composer require issuebadge/laravel-notification-channel

Configuration

Add to your .env:

ISSUEBADGE_API_KEY=your_api_key_here

Publish config if needed:

php artisan vendor:publish --tag=issuebadge-config

Usage

use NotificationChannels\IssueBadge\IssueBadgeMessage;

public function toIssueBadge($notifiable)
{
    return IssueBadgeMessage::create(
        $notifiable->name,
        $notifiable->email,
        'W238GD8PK'
    );
}

License

MIT