PHPackages                             victoravelar/laravel-dashboard-football-data-advanced - 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. victoravelar/laravel-dashboard-football-data-advanced

ActiveLibrary

victoravelar/laravel-dashboard-football-data-advanced
=====================================================

Laravel dashboard tiles to display matches, results, standings and more football data stats.

v0.1.0(3y ago)116MITPHPPHP ^8.0|^7.4

Since Oct 6Pushed 3y ago1 watchersCompare

[ Source](https://github.com/VictorAvelar/laravel-dashboard-football-data-advanced)[ Packagist](https://packagist.org/packages/victoravelar/laravel-dashboard-football-data-advanced)[ Docs](https://github.com/VictorAvelar/laravel-dashboard-football-data-advanced)[ RSS](/packages/victoravelar-laravel-dashboard-football-data-advanced/feed)WikiDiscussions master Synced 1mo ago

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

A collection of tiles to display football data.
===============================================

[](#a-collection-of-tiles-to-display-football-data)

[![Latest Version on Packagist](https://camo.githubusercontent.com/5772ad0b477635af438eb95dc33d15bf8619ac37d8d41756effea984ab99df2b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f566963746f724176656c61722f6c61726176656c2d64617368626f6172642d666f6f7462616c6c2d646174612d616476616e6365642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/VictorAvelar/laravel-dashboard-football-data-advanced)[![GitHub Tests Action Status](https://camo.githubusercontent.com/9dae820bcc7387cd4c1bc45f2de4d208134141ee59ac3ae354765db1eb6584dd/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f566963746f724176656c61722f6c61726176656c2d64617368626f6172642d666f6f7462616c6c2d646174612d616476616e6365642f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/VictorAvelar/laravel-dashboard-football-data-advanced/actions?query=workflow%3Arun-tests+branch%3Amaster)[![Total Downloads](https://camo.githubusercontent.com/ba635b076c9eadeb334d5eb4983b809a7686126534ecf56809fbe12e6ae6ca9a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f566963746f724176656c61722f6c61726176656c2d64617368626f6172642d666f6f7462616c6c2d646174612d616476616e6365642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/:vendor/laravel-dashboard-football-data-advanced)

Laravel dashboard tiles to display matches, results, standings and more football data stats.

This tile can be used on [the Laravel Dashboard](https://docs.spatie.be/laravel-dashboard).

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

[](#installation)

You can install the package via composer:

```
composer require victoravelar/laravel-dashboard-football-data-advanced
```

Configuration
-------------

[](#configuration)

```
// in config/dashboard.php

return [
    // other settings
    'tiles' => [
        // other tiles ...
        'football_data_advanced' => [
            /*
            |--------------------------------------------------------------------------
            | Football-data.org API KEY
            |--------------------------------------------------------------------------
            |
            | In order to fetch the data an API key is required, get yours at
            | https://www.football-data.org/client/register.
            | The API is provided in a FREMIUM model thus the information to be
            | displayed is limited by your own API plan.
            |
            */
            'api_key' => env('FOOTBALL_DATA_API_KEY', ''),

            /*
            |--------------------------------------------------------------------------
            | Future lookup limit.
            |--------------------------------------------------------------------------
            |
            | Sets the limit to look forward for upcoming matches, the max. suggested
            | value is 1 week as the space for displaying is limited and most of the
            | values will not fit the available tile space.
            |
            | The value must be a strtotime valid string without sign.
            |
            | See: https://www.php.net/manual/en/function.strtotime.php
            |
            */
            'future' => '2 days',

            /*
            |--------------------------------------------------------------------------
            | Past lookup limit.
            |--------------------------------------------------------------------------
            |
            | Sets the limit to look backwards for resutls, the max. suggested
            | value is 1 week as the space for displaying is limited and most of the
            | values will not fit the available tile space.
            |
            | The value must be a strtotime valid string without sign.
            |
            | See: https://www.php.net/manual/en/function.strtotime.php
            |
            */
            'past' => '3 days',

            /*
            |--------------------------------------------------------------------------
            | Competitions of interest.
            |--------------------------------------------------------------------------
            |
            | The list of competitions that you are interested in.
            |
            | The values for all the competitions can be found here:
            | https://docs.football-data.org/general/v4/lookup_tables.html#_league_codes
            |
            | The leagues available in the free tier are the following: Champions League,
            | Primeira Liga, Premier League, Eredivisie, Bundesliga, Ligue 1, Serie A,
            | La Liga, Championship, Serie A BR, Worldcup, Euro.
            |
            */
            'competitions' => ['PD', 'PL', 'FL1', 'BL1', 'CL', 'SA'],

            /*
            |--------------------------------------------------------------------------
            | Priority Football teams.
            |--------------------------------------------------------------------------
            |
            | A list of the teams you consider a priority across the tracked competitions.
            |
            | You must use the team acronym, ex. use `PSG` for Paris St. Germain.
            |
            */
            'priority' => [
                'FCB',
                'MCI',
                'LIV',
                'PSG',
                'RBL',
            ],
        ],
    ],
];
```

Usage
-----

[](#usage)

This package contains multiple tiles to display information from [Football-data.org](https://www.football-data.org/), the usage will be broken down per tile.

### Upcoming matches

[](#upcoming-matches)

This tile displays upcoming football matches from the leagues you selected in `dashboard.tiles.football_data_advanced.competitions`.

In your dashboard view you use the `livewire:fda-upcoming` component.

```

```

#### Example

[](#example)

[![Upcoming matches](media/upcoming-matches.png)](media/upcoming-matches.png)

### Match results

[](#match-results)

This tile displays football matches resutls from the leagues you selected in `dashboard.tiles.football_data_advanced.competitions`.

In your dashboard view you use the `livewire:fda-results` component.

```

```

#### Example

[](#example-1)

[![Upcoming matches](media/match-results.png)](media/match-results.png)

### League standings

[](#league-standings)

This tile displays the standings for one of your selected leagues, you need to use the league code as parameter for the component.

In your dashboard view you use the `livewire:fda-results` component.

```

```

#### Example

[](#example-2)

[![Upcoming matches](media/league-standings.png)](media/league-standings.png)

Sample dashboard
----------------

[](#sample-dashboard)

```

```

### Screenshot

[](#screenshot)

[![Upcoming matches](media/full-dashboard.png)](media/full-dashboard.png)

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](https://github.com/VictorAvelar/laravel-dashboard-football-data-advanced/releases) for more information on what has changed recently.

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

[](#contributing)

Please see [CONTRIBUTING](https://github.com/spatie/.github/blob/main/CONTRIBUTING.md) for details.

Security
--------

[](#security)

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

Credits
-------

[](#credits)

- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 94% 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

Unknown

Total

1

Last Release

1314d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1d916828232fe3106f3bc593b97ceef46f2b4285b4867a59d6277495e2a6fbf6?d=identicon)[VictorAvelar](/maintainers/VictorAvelar)

---

Top Contributors

[![VictorAvelar](https://avatars.githubusercontent.com/u/7926849?v=4)](https://github.com/VictorAvelar "VictorAvelar (47 commits)")[![cdterry87](https://avatars.githubusercontent.com/u/3245625?v=4)](https://github.com/cdterry87 "cdterry87 (3 commits)")

---

Tags

hacktoberfestlaravellaravel-dashboardlaravel-dashboard-tilelaravel-dashboardlaravel dashboard tileVictorAvelarfootball-datalaravel-dashboard-football-data-advancedstandings

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/victoravelar-laravel-dashboard-football-data-advanced/health.svg)

```
[![Health](https://phpackages.com/badges/victoravelar-laravel-dashboard-football-data-advanced/health.svg)](https://phpackages.com/packages/victoravelar-laravel-dashboard-football-data-advanced)
```

###  Alternatives

[spatie/laravel-dashboard

A dashboard for Laravel

568156.1k94](/packages/spatie-laravel-dashboard)[fidum/laravel-dashboard-chart-tile

Generic chart tiles for laravel dashboard

16234.7k1](/packages/fidum-laravel-dashboard-chart-tile)

PHPackages © 2026

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