PHPackages                             rabbit-digital/bugtify-laravel - 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. [Logging &amp; Monitoring](/categories/logging)
4. /
5. rabbit-digital/bugtify-laravel

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

rabbit-digital/bugtify-laravel
==============================

Error monitoring, reporting and bug notifier for Laravel

v0.4(2y ago)115.5k↓23.3%Apache-2.0PHPPHP &gt;=5.5

Since Nov 14Pushed 1y ago1 watchersCompare

[ Source](https://github.com/RabbitDigitalMooner/bugtify-laravel)[ Packagist](https://packagist.org/packages/rabbit-digital/bugtify-laravel)[ Docs](https://rabbit-digital.bssholding.com)[ RSS](/packages/rabbit-digital-bugtify-laravel/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (1)Versions (6)Used By (0)

Bug Notification for Laravel
----------------------------

[](#bug-notification-for-laravel)

[![Software License](https://camo.githubusercontent.com/0ac33b6eafa2e476b5c166055db7b2ed91380a6776d4dbfd870aa9dc246726c6/68747470733a2f2f706f7365722e707567782e6f72672f7261626269742d6469676974616c2f627567746966792d6c61726176656c2f6c6963656e73652e737667)](LICENSE.md)[![Latest Version on Packagist](https://camo.githubusercontent.com/a42e750471a1f07ef8b7c9b96fac43aa1e119de42144fe5dad331558ff4d09a7/68747470733a2f2f706f7365722e707567782e6f72672f7261626269742d6469676974616c2f627567746966792d6c61726176656c2f762f737461626c652e737667)](https://packagist.org/packages/rabbit-digital/bugtify-laravel)[![Total Downloads](https://camo.githubusercontent.com/4d588ca938f33dafceb740ea68f8350456176bfc2595e88a37e99141a2a4b86e/68747470733a2f2f706f7365722e707567782e6f72672f7261626269742d6469676974616c2f627567746966792d6c61726176656c2f642f746f74616c2e737667)](https://packagist.org/packages/rabbit-digital/bugtify-laravel)

What is Bugtify?
----------------

[](#what-is-bugtify)

This package allows you to send error log to Discord via webhook. Allow you to track any error from your Laravel Application

Installation on Laravel
-----------------------

[](#installation-on-laravel)

The Bugtify can be installed with [Composer](https://getcomposer.org/). Run this command:

```
composer require rabbit-digital/bugtify-laravel
```

Register our service provider in providers array in `config/app.php` before your `AppServiceProvider::class`

```
'providers' => [
    // ...
    RabbitDigital\Bugtify\BugtifyServiceProvider::class,
    // ...
],
```

You just need to publish the config file of the package.

```
php artisan vendor:publish --provider="RabbitDigital\Bugtify\BugtifyServiceProvider" --tag=config
```

Configure your Discord Webhook URL in your .env file:

```
BUGTIFY_DISCORD_WEBHOOK=your-discord-webhook-here
```

If you need to avoid to send notification with the same error can configure with option below

```
BUGTIFY_LIMIT_ENABLED=true
```

Installation on Lumen
---------------------

[](#installation-on-lumen)

The Bugtify can be installed with [Composer](https://getcomposer.org/). Run this command:

```
composer require rabbit-digital/bugtify-laravel
```

Copy the config file (bugtify.php) to lumen config directory.

```
php -r "file_exists('config/') || mkdir('config/'); copy('vendor/rabbit-digital/bugtify-laravel/config/bugtify.php', 'config/bugtify.php');"
```

And adjust config file (config/bugtify.php) with your desired settings.

In bootstrap/app.php you will need to:

Uncomment this line if you still not did it.

```
$app->withFacades();
```

Register Bugtify service provider

```
$app->register(RabbitDigital\Bugtify\BugtifyServiceProvider::class);
```

Reporting unhandled exceptions
------------------------------

[](#reporting-unhandled-exceptions)

To ensure all unhandled exceptions are sent to Discord, set up a bugtify logging channel and add it to your logging stack in config/logging.php:

```
'channels' => [
        'stack' => [
            'driver' => 'stack',
            // Add bugtify to the stack:
            'channels' => ['single', 'bugtify'],
        ],

        // ...

        // Create a bugtify logging channel:
        'bugtify' => [
            'driver' => 'bugtify',
        ],
    ],
```

Laravel and Lumen version below 5.5
-----------------------------------

[](#laravel-and-lumen-version-below-55)

Laravel and Lumen version less than 5.5 not support Logger class. Need to manually add in `App\Exception\Handler.php`

```
public function report(Exception $e)
{
    \RabbitDigital\Bugtify\Facades\Bugtify::notifyException($e);

    parent::report($e);
}
```

Reporting handled exceptions
----------------------------

[](#reporting-handled-exceptions)

Reporting handled exceptions can be accomplished as follows:

```
try {
    // Add some error code here
} catch (Exception $ex) {
    \RabbitDigital\Bugtify\Facades\Bugtify::notifyException($ex);
}
```

License
-------

[](#license)

The Bugtify for Laravel library is free software released under the MIT License. See [LICENSE](LICENSE) for details.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance26

Infrequent updates — may be unmaintained

Popularity26

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity35

Early-stage or recently created project

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

Total

4

Last Release

931d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2481a91da9fa3e64f0cc732458479c3c87157c4b400fd3bc466a375cfdaa6bb4?d=identicon)[RabbitDigital](/maintainers/RabbitDigital)

---

Top Contributors

[![ALTELMA](https://avatars.githubusercontent.com/u/4938568?v=4)](https://github.com/ALTELMA "ALTELMA (5 commits)")

---

Tags

loglaravelerrordiscord

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/rabbit-digital-bugtify-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/rabbit-digital-bugtify-laravel/health.svg)](https://phpackages.com/packages/rabbit-digital-bugtify-laravel)
```

###  Alternatives

[guanguans/laravel-exception-notify

Monitor exception and report to the notification channels(Log、Mail、AnPush、Bark、Chanify、DingTalk、Discord、Gitter、GoogleChat、IGot、Lark、Mattermost、MicrosoftTeams、NowPush、Ntfy、Push、Pushback、PushBullet、PushDeer、PushMe、Pushover、PushPlus、QQ、RocketChat、ServerChan、ShowdocPush、SimplePush、Slack、Telegram、WeWork、WPush、XiZhi、YiFengChuanHua、ZohoCliq、ZohoCliqWebHook、Zulip).

14642.7k1](/packages/guanguans-laravel-exception-notify)[larabug/larabug

Laravel 6.x/7.x/8.x/9.x/10.x/11.x/12.x/13.x bug notifier

299549.3k1](/packages/larabug-larabug)[saasscaleup/laravel-log-alarm

Laravel log Alarm help you to set up alarm when errors occur in your system and send you a notification via Slack and email

27025.0k](/packages/saasscaleup-laravel-log-alarm)[yaro/log-envelope

Laravel 5 email on error

4147.0k](/packages/yaro-log-envelope)[moesif/moesif-laravel

Moesif Collection/Data Ingestion Middleware for Laravel

1065.8k](/packages/moesif-moesif-laravel)[melihovv/laravel-log-viewer

A Laravel log viewer

1231.5k1](/packages/melihovv-laravel-log-viewer)

PHPackages © 2026

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