PHPackages                             slgo99/laravel-error-report - 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. slgo99/laravel-error-report

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

slgo99/laravel-error-report
===========================

Get to know what's happening in your production environment!

v1.0.3(1y ago)1759MITPHP

Since Nov 16Pushed 1y ago1 watchersCompare

[ Source](https://github.com/slgo99/laravel-error-report)[ Packagist](https://packagist.org/packages/slgo99/laravel-error-report)[ RSS](/packages/slgo99-laravel-error-report/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)DependenciesVersions (5)Used By (0)

Laravel Error Report
====================

[](#laravel-error-report)

Get to know what's happening in your production environment!

Warning

For the package to work you need to have a mail configuration set up in your Laravel application.

What It Does
------------

[](#what-it-does)

This package allows you to get e-mail notifications when an error occurs in your production environment.

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

[](#installation)

You can install the package via composer:

```
composer require slgo99/laravel-error-report
```

As Laravel uses Package auto-discovery, you don't need to manually add the service provider. If you don't use auto-discovery, you can add the service provider to the providers list in `bootstrap/providers.php`:

```
return [
    App\Providers\AppServiceProvider::class,
    // ...
    Slgo99\LaravelErrorReport\ServiceProvider::class,
];
```

In older versions of Laravel, you can add the service provider to the providers list in `config/app.php`:

```
'providers' => [
    // ...
    Slgo99\LaravelErrorReport\ServiceProvider::class,
],
```

Optionally, you can publish the configuration file with:

```
php artisan vendor:publish --provider="Slgo99\LaravelErrorReport\ServiceProvider" --tag="config"
```

After publishing the configuration file, you can find it in `config/error_report.php`.

```
return [
    /**
     * Enable or disable the error report
     */
    'enabled' => env('ERROR_REPORT_ENABLED', false),

    /**
     * The emails to send the error report
     */
    'emails' => env('ERROR_REPORT_EMAILS', ''),
];
```

Usage
-----

[](#usage)

To enable the e-mail notifications, you need to set the following environment variables in your `.env` file:

Enable the error report:

```
ERROR_REPORT_ENABLED=true
```

Set the e-mail where you want to receive the error reports:

Note

Note that you can set multiple e-mails separated by commas.

```
ERROR_REPORT_EMAILS=johndoe@example.com,janedoe@example.com
```

That's it! Now you will receive an e-mail notification whenever an error occurs in your production environment.

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance40

Moderate activity, may be stable

Popularity18

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity42

Maturing project, gaining track record

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

Total

4

Last Release

509d ago

### Community

Maintainers

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

---

Top Contributors

[![slgo99](https://avatars.githubusercontent.com/u/48689110?v=4)](https://github.com/slgo99 "slgo99 (8 commits)")

### Embed Badge

![Health badge](/badges/slgo99-laravel-error-report/health.svg)

```
[![Health](https://phpackages.com/badges/slgo99-laravel-error-report/health.svg)](https://phpackages.com/packages/slgo99-laravel-error-report)
```

###  Alternatives

[psr/log

Common interface for logging libraries

10.4k1.2B9.2k](/packages/psr-log)[itsgoingd/clockwork

php dev tools in your browser

5.9k27.6M94](/packages/itsgoingd-clockwork)[graylog2/gelf-php

A php implementation to send log-messages to a GELF compatible backend like Graylog2.

41838.2M138](/packages/graylog2-gelf-php)[bugsnag/bugsnag-psr-logger

Official Bugsnag PHP PSR Logger.

32132.5M2](/packages/bugsnag-bugsnag-psr-logger)[consolidation/log

Improved Psr-3 / Psr\\Log logger based on Symfony Console components.

15462.2M7](/packages/consolidation-log)[datadog/php-datadogstatsd

An extremely simple PHP datadogstatsd client

19124.6M15](/packages/datadog-php-datadogstatsd)

PHPackages © 2026

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