PHPackages                             pinktie/laravel-notifications-trello - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. pinktie/laravel-notifications-trello

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

pinktie/laravel-notifications-trello
====================================

Laravel 5.x.x Notifications Channel for Trello

1.0.1(7y ago)25492[1 issues](https://github.com/PinkTie/laravel-notifications-trello/issues)MITPHPPHP &gt;=5.6.4

Since Aug 15Pushed 7y ago1 watchersCompare

[ Source](https://github.com/PinkTie/laravel-notifications-trello)[ Packagist](https://packagist.org/packages/pinktie/laravel-notifications-trello)[ Docs](https://github.com/PinkTie/laravel-notifications-trello)[ RSS](/packages/pinktie-laravel-notifications-trello/feed)WikiDiscussions master Synced yesterday

READMEChangelog (2)Dependencies (7)Versions (3)Used By (0)

### [![PinkTie Logo](https://camo.githubusercontent.com/a540f1b2d9fc6ecdac1c38a7803f9ac2ae27ce2be4796e4acda34bc0285cb7ef/68747470733a2f2f70696e6b746965746563682e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031372f30332f50696e6b5469652d36307836302e706e67)](https://camo.githubusercontent.com/a540f1b2d9fc6ecdac1c38a7803f9ac2ae27ce2be4796e4acda34bc0285cb7ef/68747470733a2f2f70696e6b746965746563682e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031372f30332f50696e6b5469652d36307836302e706e67) PinkTie Technology Group

[](#-pinktie-technology-group)

Laravel 5.x.x Notifications Channel for Trello
==============================================

[](#laravel-5xx-notifications-channel-for-trello)

[![Latest Stable Version](https://camo.githubusercontent.com/5f73f9cc32ef28c479f5cc3c8671376d70cda91b5bb4a98deb666f36225aa0cb/68747470733a2f2f706f7365722e707567782e6f72672f70696e6b7469652f6c61726176656c2d6e6f74696669636174696f6e732d7472656c6c6f2f762f737461626c65)](https://packagist.org/packages/pinktie/laravel-notifications-trello) [![License](https://camo.githubusercontent.com/81dc12ed057f9c17f03cf9060e1ac7c30562862d84535e0ad38ada96a4e96668/68747470733a2f2f706f7365722e707567782e6f72672f70696e6b7469652f6c61726176656c2d6e6f74696669636174696f6e732d7472656c6c6f2f6c6963656e7365)](https://packagist.org/packages/pinktie/laravel-notifications-trello) [![Total Downloads](https://camo.githubusercontent.com/4e6702208a2e43d97ae0f23857b7e48d90097bcca872cc26d90b4ecbb56b0d21/68747470733a2f2f706f7365722e707567782e6f72672f70696e6b7469652f6c61726176656c2d6e6f74696669636174696f6e732d7472656c6c6f2f646f776e6c6f616473)](https://packagist.org/packages/pinktie/laravel-notifications-trello) [![Latest Unstable Version](https://camo.githubusercontent.com/b278290560bf94616b5e699375b6ddbadc4aa50a464e69c86a32ea9232d097c9/68747470733a2f2f706f7365722e707567782e6f72672f70696e6b7469652f6c61726176656c2d6e6f74696669636174696f6e732d7472656c6c6f2f762f756e737461626c65)](https://packagist.org/packages/pinktie/laravel-notifications-trello)

Create [Trello](https://www.trello.com/) cards with Laravel Notifications on Laravel 5.x.x

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up the Trello service](#setting-up-the-trello-service)
- [Usage](#usage)
    - [Available Message methods](#available-message-methods)
- [Changelog](#changelog)
- [Support](#support)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

Installation
------------

[](#installation)

Install the package via composer:

```
composer require pinktie/laravel-notifications-trello
```

### Setting up the Trello service

[](#setting-up-the-trello-service)

Add your Trello REST API Key to your `config/services.php`:

```
// config/services.php
...
'trello' => [
    'key' => env('TRELLO_API_KEY'),
],
...
```

Usage
-----

[](#usage)

Now you can use the channel in your `via()` method inside the notification:

```
use PinkTie\TrelloNotifications\TrelloChannel;
use PinkTie\TrelloNotifications\TrelloMessage;
use Illuminate\Notifications\Notification;

class ProjectCreated extends Notification
{
    public function via($notifiable)
    {
        return [TrelloChannel::class];
    }

    public function toTrello($notifiable)
    {
        return TrelloMessage::create()
            ->name("Trello Card Name")
            ->description("This is the Trello card description")
            ->top()
            ->due('tomorrow')
	    ->members('123456abc7890xyz');
    }
}
```

In order to let your Notification know which Trello user and Trello list you are targeting, add the `routeNotificationForTrello` method to your Notifiable model.

This method needs to return an array containing the access token of the authorized Trello user (if it's a private board) and the list ID of the Trello list to add the card to.

```
public function routeNotificationForTrello()
{
    return [
        'token' => 'NotifiableToken',
        'idList' => 'TrelloListId',
    ];
}
```

### Available methods

[](#available-methods)

- `name('')`: Accepts a string value for the Trello card name.
- `description('')`: Accepts a string value for the Trello card description.
- `top()`: Moves the Trello card to the top.
- `bottom()`: Moves the Trello card to the bottom.
- `position('')`: Accepts an integer for a specific Trello card position.
- `due('')`: Accepts a string or DateTime object for the Trello card due date.
- `members('')`: Accepts a comma-seperated string list of member IDs to add to the card.

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Support
-------

[](#support)

If you discover any issues or would like to request addtional features, please use the GitHub issue tracker.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Kevin Fairbanks](https://github.com/KevinFairbanks)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance10

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~36 days

Total

2

Last Release

2839d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/81b87f18c4f160cb3b93916cc69bbee851647b1df6837d2d55586dcb5b17ddfb?d=identicon)[KevinFairbanks](/maintainers/KevinFairbanks)

---

Top Contributors

[![KevinFairbanks](https://avatars.githubusercontent.com/u/12453603?v=4)](https://github.com/KevinFairbanks "KevinFairbanks (2 commits)")

---

Tags

laravellaravel-5-packagenotificationstrellotrello-apilaravelnotificationstrello

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/pinktie-laravel-notifications-trello/health.svg)

```
[![Health](https://phpackages.com/badges/pinktie-laravel-notifications-trello/health.svg)](https://phpackages.com/packages/pinktie-laravel-notifications-trello)
```

###  Alternatives

[spatie/laravel-health

Monitor the health of a Laravel application

87511.3M155](/packages/spatie-laravel-health)[craftcms/cms

Craft CMS

3.6k3.6M2.9k](/packages/craftcms-cms)[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.8M44](/packages/laravel-notification-channels-telegram)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4079.9M1](/packages/s-ichikawa-laravel-sendgrid-driver)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2401.4M14](/packages/laravel-notification-channels-discord)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

254168.5k](/packages/erag-laravel-disposable-email)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
