PHPackages                             devlabor/laravel-dashboard-honeybadger-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. devlabor/laravel-dashboard-honeybadger-tile

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

devlabor/laravel-dashboard-honeybadger-tile
===========================================

A Honeybadger tile for Laravel Dashboard

3.1.2(2y ago)224[1 issues](https://github.com/DevLabor/laravel-dashboard-honeybadger-tile/issues)MITPHPPHP ^8.1

Since Aug 2Pushed 2y ago3 watchersCompare

[ Source](https://github.com/DevLabor/laravel-dashboard-honeybadger-tile)[ Packagist](https://packagist.org/packages/devlabor/laravel-dashboard-honeybadger-tile)[ Docs](https://github.com/devlabor/laravel-dashboard-honeybadger-tile)[ RSS](/packages/devlabor-laravel-dashboard-honeybadger-tile/feed)WikiDiscussions master Synced yesterday

READMEChangelog (6)Dependencies (6)Versions (8)Used By (0)

A tile to display unresolved faults count from Honeybadger.io
=============================================================

[](#a-tile-to-display-unresolved-faults-count-from-honeybadgerio)

[![Latest Version on Packagist](https://camo.githubusercontent.com/4d6ea78a4e0612284911613528b0d79964c093d14eab5c3d26f9bcf037739832/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6465766c61626f722f6c61726176656c2d64617368626f6172642d686f6e65796261646765722d74696c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/devlabor/laravel-dashboard-honeybadger-tile)[![GitHub Tests Action Status](https://camo.githubusercontent.com/b220ed9f70aa0661063fee64bd35c5863369e26239f2bc100d60d0e22c6e291e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6465766c61626f722f6c61726176656c2d64617368626f6172642d686f6e65796261646765722d74696c652f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/devlabor/laravel-dashboard-honeybadger-tile/actions?query=workflow%3Arun-tests+branch%3Amaster)[![Total Downloads](https://camo.githubusercontent.com/a9d985528a4fc182be75762884f6b608242b2c6f411a53140a0ae6202e2081ad/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6465766c61626f722f6c61726176656c2d64617368626f6172642d686f6e65796261646765722d74696c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/devlabor/laravel-dashboard-honeybadger-tile)

This tile can used on the [Laravel Dashboard](https://docs.spatie.be/laravel-dashboard) to display unresolved Honeybadger faults count.

[![Screenshot](https://camo.githubusercontent.com/aa4099bae3121639ab284eead61986c65fb887c1b63df4d96d623c7d0fc6205b/68747470733a2f2f6465766c61626f722e636f6d2f6769746875622f73637265656e73686f742d6c61726176656c2d64617368626f6172642d686f6e65796261646765722d74696c652e6a7067)](https://camo.githubusercontent.com/aa4099bae3121639ab284eead61986c65fb887c1b63df4d96d623c7d0fc6205b/68747470733a2f2f6465766c61626f722e636f6d2f6769746875622f73637265656e73686f742d6c61726176656c2d64617368626f6172642d686f6e65796261646765722d74696c652e6a7067)

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

[](#installation)

You can install the tile via composer:

```
composer require devlabor/laravel-dashboard-honeybadger-tile
```

Sign up to  and create a new project. To obtain `HONEYBADGER_AUTH_TOKEN` you have to create a new api token under your user authentication settings. After that add the token to your `.env` file.

```
HONEYBADGER_AUTH_TOKEN=YourGeneratedToken
```

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

```
// in config/dashboard.php

return [
    // ...
    'tiles' => [
        'honeybadger' => [
            //'description' => 'Unresolved faults',
            'auth_token' => env('HONEYBADGER_AUTH_TOKEN'),
            'refresh_interval_in_seconds' => 300
        ],
    ],
];
```

In `app\Console\Kernel.php` you should schedule the `DevLabor\HoneybadgerTile\FetchHoneybadgerProjectsCommand` to run every five minutes.

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

protected function schedule(Schedule $schedule)
{
    // ...
    $schedule->command(\DevLabor\HoneybadgerTile\Commands\FetchHoneybadgerProjectsCommand::class)->everyFiveMinutes();
}
```

You are also able to execute the command manually.

```
php artisan dashboard:fetch-honeybadger-projects
```

Usage
-----

[](#usage)

In your dashboard view you use the `livewire:honeybadger-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="DevLabor\HoneybadgerTile\HoneybadgerTileServiceProvider" --tag="dashboard-honeybadger-tile-views"
```

Testing
-------

[](#testing)

```
composer test
```

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  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Jeffrey Reichardt](https://github.com/kiv4h)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance10

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 69.6% 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 ~214 days

Recently: every ~311 days

Total

7

Last Release

823d ago

Major Versions

1.0.0 → v2.0.x-dev2020-09-11

2.0.0 → 3.0.02023-11-03

PHP version history (2 changes)1.0.0PHP ^7.4

3.0.0PHP ^8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/4ac49f4d8027a3933d11793db700eeef391cfbded9a6ed612778c6fe39fd0ae2?d=identicon)[Kiv4h](/maintainers/Kiv4h)

---

Top Contributors

[![Kiv4h](https://avatars.githubusercontent.com/u/1305053?v=4)](https://github.com/Kiv4h "Kiv4h (16 commits)")[![dennis-pakebusch](https://avatars.githubusercontent.com/u/94850669?v=4)](https://github.com/dennis-pakebusch "dennis-pakebusch (7 commits)")

---

Tags

spatielaravel-dashboarddevlaborhoneybadger

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

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

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

###  Alternatives

[spatie/laravel-package-tools

Tools for creating Laravel packages

935125.5M7.0k](/packages/spatie-laravel-package-tools)[spatie/laravel-data

Create unified resources and data transfer objects

1.7k28.9M627](/packages/spatie-laravel-data)[spatie/macroable

A trait to dynamically add methods to a class

72659.6M64](/packages/spatie-macroable)[spatie/regex

A sane interface for php's built in preg\_\* functions

1.1k17.1M59](/packages/spatie-regex)[spatie/enum

PHP Enums

84429.1M68](/packages/spatie-enum)[spatie/url

Parse, build and manipulate URL's

73914.3M97](/packages/spatie-url)

PHPackages © 2026

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