PHPackages                             kayschima/laravel-dashboard-footballdata-standings-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. kayschima/laravel-dashboard-footballdata-standings-tile

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

kayschima/laravel-dashboard-footballdata-standings-tile
=======================================================

A tile for Laravel Dashboard that displays football standings of different leagues

1.0.1(5y ago)0901MITPHPPHP ^7.4CI failing

Since May 2Pushed 5y ago1 watchersCompare

[ Source](https://github.com/kayschima/laravel-dashboard-footballdata-standings-tile)[ Packagist](https://packagist.org/packages/kayschima/laravel-dashboard-footballdata-standings-tile)[ Docs](https://github.com/kayschima/laravel-dashboard-footballdata-standings-tile)[ RSS](/packages/kayschima-laravel-dashboard-footballdata-standings-tile/feed)WikiDiscussions master Synced 3d ago

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

A tile for Laravel Dashboard that displays football standings of different leagues and actual football livescores
=================================================================================================================

[](#a-tile-for-laravel-dashboard-that-displays-football-standings-of-different-leagues-and-actual-football-livescores)

[![Latest Version on Packagist](https://camo.githubusercontent.com/cd5adb487a086e316a8fa11c5e623fcc14293ca12e920f5f3129b7914f87793a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6b6179736368696d612f6c61726176656c2d64617368626f6172642d666f6f7462616c6c646174612d7374616e64696e67732d74696c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/kayschima/laravel-dashboard-footballdata-standings-tile)[![Total Downloads](https://camo.githubusercontent.com/1e377c39419862462817ae4fe3ef874a2994c0c1bce24780364b8220e1ffc113/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6b6179736368696d612f6c61726176656c2d64617368626f6172642d666f6f7462616c6c646174612d7374616e64696e67732d74696c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/kayschima/laravel-dashboard-footballdata-standings-tile)

This tile can used on the [Laravel Dashboard](https://docs.spatie.be/laravel-dashboard) to display standings from [www.football-data.org](http://www.football-data.org).

License
-------

[](#license)

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

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

[](#installation)

You can install the tile via composer:

```
composer require kayschima/laravel-dashboard-footballdata-standings-tile
```

In the dashboard config file, you must add this configuration in the tiles key.

Sign up at  to obtain `FOOTBALLDATA_API_KEY`.

Set `FOOTBALL_LEAGUE` to a league shortcut of the football-data.org service (e.g. `BL1` or `PL`).

```
// in config/dashboard.php

return [
    // ...
    'tiles' => [
        'footballstandings' => [
            'footballdata_api_key' => env('FOOTBALLDATA_API_KEY'),
            'football_league' => env('FOOTBALL_LEAGUE'),
        ]
    ],
];
```

In app\\Console\\Kernel.php you should schedule

- the `Kayschima\FootballStandingsTile\Commands\FetchFootballStandingsDataCommand` and
- the `Kayschima\FootballStandingsTile\Commands\FetchFootballLiveResultsDataCommand`

to run every minute.

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

use Kayschima\FootballStandingsTile\Commands\FetchFootballStandingsDataCommand;
use Kayschima\FootballStandingsTile\Commands\FetchFootballLiveResultsDataCommand;

protected function schedule(Schedule $schedule)
{
    // ...
    $schedule->command(FetchFootballStandingsDataCommand::class)->everyMinute();
    $schedule->command(FetchFootballLiveResultsDataCommand::class)->everyMinute();
}
```

Views
-----

[](#views)

In your dashboard views you use

- the `livewire:football-standings-tile` component and/or
- the `livewire:football-live-results-tile` component.

An optional `$highlight`-attribute to the `livewire:football-standings-tile` triggers a simple highlighting of e.g. the local or favourite team what is expected to be a common use case for the tile.

For simplicity, this commit uses the id of the team, specific to every competition -- `"4"` in this case for BVB @ 1. Bundesliga.

```

```

#### Customizing the views

[](#customizing-the-views)

```
php artisan vendor:publish --provider="Kayschima\FootballStandingsTile\FootballStandingsTileServiceProvider" --tag="dashboard-football-standings-tile-views"
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 93.3% 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 ~26 days

Recently: every ~32 days

Total

6

Last Release

2072d ago

Major Versions

0.0.6 → 1.0.02020-09-09

### Community

Maintainers

![](https://www.gravatar.com/avatar/b1ac0ded53fb5983b971e6259a0fcd9154e2d8a8c3426bf205a75c7f576c285c?d=identicon)[kayschima](/maintainers/kayschima)

---

Top Contributors

[![kayschima](https://avatars.githubusercontent.com/u/43473477?v=4)](https://github.com/kayschima "kayschima (14 commits)")[![JayAhrDe](https://avatars.githubusercontent.com/u/930553?v=4)](https://github.com/JayAhrDe "JayAhrDe (1 commits)")

---

Tags

kayschimalaravel-dashboard-footballdata-standings-tile

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/kayschima-laravel-dashboard-footballdata-standings-tile/health.svg)

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

PHPackages © 2026

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