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)1878MITPHP

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 today

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 57% of packages

Maintenance37

Infrequent updates — may be unmaintained

Popularity19

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

563d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/48689110?v=4)[Sergio Lago](/maintainers/slgo99)[@slgo99](https://github.com/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.2B11.5k](/packages/psr-log)[open-telemetry/api

API for OpenTelemetry PHP.

1941.5M276](/packages/open-telemetry-api)[open-telemetry/sdk

SDK for OpenTelemetry PHP.

2328.5M342](/packages/open-telemetry-sdk)

PHPackages © 2026

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