PHPackages                             tkaratug/laravel-dashboard-trello-tile - 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. tkaratug/laravel-dashboard-trello-tile

ActiveLibrary

tkaratug/laravel-dashboard-trello-tile
======================================

Trello tile for Laravel Dashboard

1.2.0(3y ago)16412MITPHPPHP ^8.2|^8.1|^8.0|^7.4

Since Dec 20Pushed 3y ago1 watchersCompare

[ Source](https://github.com/tkaratug/laravel-dashboard-trello-tile)[ Packagist](https://packagist.org/packages/tkaratug/laravel-dashboard-trello-tile)[ Docs](https://github.com/tkaratug/laravel-dashboard-trello-tile)[ RSS](/packages/tkaratug-laravel-dashboard-trello-tile/feed)WikiDiscussions master Synced 2d ago

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

Trello Tile
===========

[](#trello-tile)

[![Latest Version on Packagist](https://camo.githubusercontent.com/91500497fe28d77582ac254069911753e06c9eedbfd716c24916209d2ceb44bc/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f746b6172617475672f6c61726176656c2d64617368626f6172642d7472656c6c6f2d74696c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/tkaratug/laravel-dashboard-trello-tile)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Total Downloads](https://camo.githubusercontent.com/e0914903914b2f808fccfe08b3a8aa1b92002ea039b1c6c1f9dba8c8becb1f35/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f746b6172617475672f6c61726176656c2d64617368626f6172642d7472656c6c6f2d74696c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/tkaratug/laravel-dashboard-trello-tile)

A tile for Laravel Dashboard that displays tasks from Trello.

[![Laravel Dashboard Trello Tile](https://github.com/tkaratug/laravel-dashboard-trello-tile/raw/master/screenshot.png?raw=true)](https://github.com/tkaratug/laravel-dashboard-trello-tile/blob/master/screenshot.png?raw=true)

Install
-------

[](#install)

Via Composer

```
$ composer require tkaratug/laravel-dashboard-trello-tile
```

Usage
-----

[](#usage)

In the `dashboard` config file, you must add this configuration in the `tiles` key. The `list_id` should be any list id from Trello that you want to display on the dashboard.

```
// in config/dashboard.php

return [
    // ...
    'tiles' => [
        'trello' => [
            'trello_key' => env('TRELLO_API_KEY'),
            'trello_token' => env('TRELLO_API_TOKEN'),
            'list_id' => env('TRELLO_LIST_ID'),
            'refresh_interval_in_seconds' => 30,
        ],
    ],
];
```

In `app\Console\Kernel.php` you should schedule the `Tkaratug\TrelloTile\Commands\FetchTrelloCardsCommand` to run every `x` minutes.

```
// in app/console/Kernel.php

protected function schedule(Schedule $schedule)
{
    $schedule->command(\Tkaratug\TrelloTile\FetchTrelloCardsCommand::class)->everyThirtyMinutes();
}
```

In your dashboard view you use the `livewire:trello-tile` component.

```

```

You can specify the number of tasks you want to be displayed on your dashboard with `count` attribute.

```

```

Change log
----------

[](#change-log)

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

Testing
-------

[](#testing)

```
$ composer test
```

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

[](#contributing)

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

Security
--------

[](#security)

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

Credits
-------

[](#credits)

- [Turan Karatuğ](https://github.com/tkaratug)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity70

Established project with proven stability

 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 ~263 days

Total

4

Last Release

1178d ago

PHP version history (3 changes)1.0.0PHP ^8.0|^7.4

1.1.0PHP ^8.1|^8.0|^7.4

1.2.0PHP ^8.2|^8.1|^8.0|^7.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/50dc98a0c75a1aaba61d52bb073e1b0cbdb17f4d5ed4bd1c694c71784b088e16?d=identicon)[tkaratug](/maintainers/tkaratug)

---

Top Contributors

[![tkaratug](https://avatars.githubusercontent.com/u/4394344?v=4)](https://github.com/tkaratug "tkaratug (8 commits)")

---

Tags

tkaratuglaravel-dashboard-trello-tile

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/tkaratug-laravel-dashboard-trello-tile/health.svg)

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

###  Alternatives

[tkaratug/laravel-notification-event-subscriber

This is my package laravel-notification-event-subscriber

9115.4k](/packages/tkaratug-laravel-notification-event-subscriber)[fidum/laravel-dashboard-chart-tile

Generic chart tiles for laravel dashboard

16234.7k1](/packages/fidum-laravel-dashboard-chart-tile)[tkaratug/livewire-smart-table

An advanced datatable component for Laravel Livewire

922.1k](/packages/tkaratug-livewire-smart-table)[spatie/laravel-dashboard-time-weather-tile

A tile for Laravel Dashboard that displays the time and the weather

1112.1k1](/packages/spatie-laravel-dashboard-time-weather-tile)[tkaratug/laravel-domain-whitelist

A domain wwhitelist checker middleware.

131.2k](/packages/tkaratug-laravel-domain-whitelist)

PHPackages © 2026

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