PHPackages                             jonlynch/laravel-dashboard-meraki-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. jonlynch/laravel-dashboard-meraki-tile

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

jonlynch/laravel-dashboard-meraki-tile
======================================

A package to display Meraki device and client status

v1.2(1y ago)18MITPHPPHP &gt;=7.4CI failing

Since May 16Pushed 1y ago1 watchersCompare

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

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

A short description of the tile
===============================

[](#a-short-description-of-the-tile)

[![Latest Version on Packagist](https://camo.githubusercontent.com/a3cda388667464416fa7e2a823f196b0a239318837527debd036d9d6ceaca2ca/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a6f6e6c796e63682f6c61726176656c2d64617368626f6172642d6d6572616b692d74696c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jonlynch/laravel-dashboard-meraki-tile)[![Total Downloads](https://camo.githubusercontent.com/d59cae05e5bf3943dcc1bdcbbc1f8cf03d0220cfcca02cc028795477e7c905cf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a6f6e6c796e63682f6c61726176656c2d64617368626f6172642d6d6572616b692d74696c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jonlynch/laravel-dashboard-meraki-tile)

A tile to display the status of devices and clients from the Cisco Meraki cloud.

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 jonlynch/laravel-dashboard-meraki-tile
```

Usage
-----

[](#usage)

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

```

```

Add the config to the tiles sections of your `config/dashboard.php`

```
// in config/dashboard.php

return [
    // ...
    tiles => [
         'meraki' => [
            'api_key' => env('MERAKI_API_KEY'),
            'organisation_id' => env('MERAKI_ORG_ID'),
             'configurations' => [ // one for each device you are interested in
                [
                    'display_name' => 'Site 1',
                    'device_name' => 'Site 1', // as used in the Meraki Cloud
                    'client' => '00:0e:06:00:22:22',
                    'radio_link' => true // Add this if there is a radio link instead of Xtend
                ],
                [
                    'display_name' => 'Site 2',
                    'device_name' => 'Site 2', // as used in the Meraki Cloud
                    'client' => '00:0e:06:00:11:11',
                ],
                [
                    'display_name' => 'Site 3',
                    'device_name' => 'Site 3', // as used in the Meraki Cloud
                    'client' => '00:0e:06:00:11:12',
                    'sleeps' => true // add true if this repeater is expected to power down when not in use
                ]
            ]
        ]
    ]
```

In `app\Console\Kernel.php` you should schedule the `JonLynch\MerakiTile\Commands\FetchMerakiDataCommand` to run every minute.

```
// in app\Console\Kernel.php

protected function schedule(Schedule $schedule)
{
    $schedule->command(\JonLynch\MerakiTile\Commands\FetchMerakiDataCommand::class)->everyMinute();

}
```

Changelog
---------

[](#changelog)

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

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

[](#contributing)

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

Security
--------

[](#security)

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

Credits
-------

[](#credits)

- [Jon Lynch](https://github.com/jonlynch)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance37

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity60

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

Recently: every ~366 days

Total

7

Last Release

580d ago

Major Versions

v0.1.1 → v1.02020-10-07

PHP version history (2 changes)v0.1.0PHP ^7.4

v1.1PHP &gt;=7.4

### Community

Maintainers

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

---

Top Contributors

[![jonlynch](https://avatars.githubusercontent.com/u/1280651?v=4)](https://github.com/jonlynch "jonlynch (13 commits)")

---

Tags

laravel-dashboardjonlynch

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[spatie/laravel-dashboard

A dashboard for Laravel

568156.1k94](/packages/spatie-laravel-dashboard)

PHPackages © 2026

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