PHPackages                             vinevax/laravel-dashboard-uptime-robot-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. [Admin Panels](/categories/admin)
4. /
5. vinevax/laravel-dashboard-uptime-robot-tile

ActiveLibrary[Admin Panels](/categories/admin)

vinevax/laravel-dashboard-uptime-robot-tile
===========================================

A tile for Laravel Dashboard that displays Uptime Robot monitors.

3.0.0(3y ago)61.6k3MITPHPPHP ^7.4 || ^8.0CI failing

Since May 2Pushed 3y ago1 watchersCompare

[ Source](https://github.com/vinevax/laravel-dashboard-uptime-robot-tile)[ Packagist](https://packagist.org/packages/vinevax/laravel-dashboard-uptime-robot-tile)[ Docs](https://github.com/vinevax/laravel-dashboard-uptime-robot-tile)[ RSS](/packages/vinevax-laravel-dashboard-uptime-robot-tile/feed)WikiDiscussions master Synced today

READMEChangelog (5)Dependencies (2)Versions (6)Used By (0)

A tile to display Uptime Robot monitors
=======================================

[](#a-tile-to-display-uptime-robot-monitors)

[![Latest Version on Packagist](https://camo.githubusercontent.com/450283156e25bc6f334e61a6bb5d457303ae2113cd2de98af1e00beb6bf4e68c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f76696e657661782f6c61726176656c2d64617368626f6172642d757074696d652d726f626f742d74696c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/vinevax/laravel-dashboard-uptime-robot-tile)[![Total Downloads](https://camo.githubusercontent.com/c488a9bc123b0d2010d7b2be6ba98f9384790a028aa11d2ee9738a9532719273/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f76696e657661782f6c61726176656c2d64617368626f6172642d757074696d652d726f626f742d74696c653f7374796c653d666c61742d737175617265)](https://packagist.org/packages/vinevax/laravel-dashboard-uptime-robot-tile)

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

Original view...

[![img](docs/screenshot.png)](docs/screenshot.png)

Alternative view for many monitors...

[![img](docs/capture.jpg)](docs/capture.jpg)

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

[](#installation)

You can install the package via composer:

```
composer require vinevax/laravel-dashboard-uptime-robot-tile
```

### ⚠️ Important if you want to use the alternative view

[](#️-important-if-you-want-to-use-the-alternative-view)

In order to use the alternative view, you need to update the included Alpine.js script from version `2` to `3`. To do this, remove the old script in your `dashboard.php` config file and add the following script `https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js`

Usage
-----

[](#usage)

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

```
// in config/dashboard.php

return [
    // ...
    'tiles' => [
        /* Monitors should be an array with ids of your monitors you want to display */
        'uptimerobot' => [
            'key' => env('UPTIMEROBOT_KEY'),
            'blade' => 'multiple', // Or `multiple` for alternative tile
            'monitors' => [],
            'monitor_types' => [
                1 => 'URL',
                2 => 'Keyword',
                3 => 'Ping',
                4 => 'Port',
                5 => 'Heartbeat'
            ],
            'uptime' => 1 // Set to 0 if fetching from Uptime Robot API lags
        ]
    ]
];
```

In `app/Console/Kernel.php` you should schedule the `VineVax\UptimeRobotTile\Commands\FetchUptimeRobotDataCommand` to run every `x` minutes.

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

        protected function schedule(Schedule $schedule)
        {
            $schedule->command(\VineVax\UptimeRobotTile\Commands\FetchUptimeRobotDataCommand::class)->everyFiveMinutes();
        }
```

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

```

```

### Customizing the view

[](#customizing-the-view)

If you want to customize the view used to render this tile, run this command:

```
php artisan vendor:publish --provider="VineVax\UptimeRobotTile\UptimeRobotTileServiceProvider" --tag="dashboard-uptime-robot-tile-views"
```

Please note that if you have published the view and then wish to switch between 'original' and 'multiple' options for the blade file in dashboard.php you will need to remove tile.blade.php from /resources/views/vendor/dashboard-uptime-robot-tile and then run the publish command again.

Changelog
---------

[](#changelog)

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

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

[](#contributing)

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

Credits
-------

[](#credits)

- [VineVax](https://github.com/vinevax)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 50% 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 ~228 days

Total

5

Last Release

1338d ago

Major Versions

1.1.0 → 2.0.02020-09-09

2.1.0 → 3.0.02022-11-03

PHP version history (2 changes)1.0.0PHP ^7.4

2.1.0PHP ^7.4 || ^8.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/26968185?v=4)[vinevax](/maintainers/vinevax)[@vinevax](https://github.com/vinevax)

---

Top Contributors

[![RobertByrnes](https://avatars.githubusercontent.com/u/59289145?v=4)](https://github.com/RobertByrnes "RobertByrnes (13 commits)")[![vinevax](https://avatars.githubusercontent.com/u/26968185?v=4)](https://github.com/vinevax "vinevax (11 commits)")[![tvbeek](https://avatars.githubusercontent.com/u/2026498?v=4)](https://github.com/tvbeek "tvbeek (2 commits)")

---

Tags

laravellaravel-dashboarduptime-robotuptime-robotvinevaxlaravel-dashboard-uptime-robot-tile

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/vinevax-laravel-dashboard-uptime-robot-tile/health.svg)

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

###  Alternatives

[fidum/laravel-dashboard-chart-tile

Generic chart tiles for laravel dashboard

16236.8k1](/packages/fidum-laravel-dashboard-chart-tile)[spatie/laravel-dashboard-time-weather-tile

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

1212.6k1](/packages/spatie-laravel-dashboard-time-weather-tile)

PHPackages © 2026

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