PHPackages                             zanysoft/laravel-exception-monitor - 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. zanysoft/laravel-exception-monitor

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

zanysoft/laravel-exception-monitor
==================================

A lightweight Laravel package that notifies you of exceptions in your application via email, Slack, or Microsoft Teams.

2.0.3(2w ago)1281MITPHPPHP &gt;=8.0

Since Jul 26Pushed 2w ago1 watchersCompare

[ Source](https://github.com/zanysoft/laravel-exception-monitor)[ Packagist](https://packagist.org/packages/zanysoft/laravel-exception-monitor)[ RSS](/packages/zanysoft-laravel-exception-monitor/feed)WikiDiscussions main Synced 2w ago

READMEChangelog (4)Dependencies (4)Versions (5)Used By (0)

[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE)[![Total Downloads](https://camo.githubusercontent.com/2cf0f1fc7ec9ddb700c34831e1471c78a918da5333ccf67a3e88366bca1fcdcf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7a616e79736f66742f6c61726176656c2d657863657074696f6e2d6d6f6e69746f722e7376673f7374796c653d666c61742d737175617265)](https://github.com/zanysoft/laravel-exception-monitor)[![Version](https://camo.githubusercontent.com/ae77d19b97468a2d1a6596cd9e6bc31440a07bae789fedcdcc9c742613eea9e1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7a616e79736f66742f6c61726176656c2d657863657074696f6e2d6d6f6e69746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/zanysoft/laravel-exception-monitor)[![Maintained](https://camo.githubusercontent.com/23b6460aa4cdb1fbb600ff19d28a22f0852541eee0ed66a48ee6338162800cb0/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4d61696e7461696e65642d7965732d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265266c6162656c3d4d61696e7461696e6564)](https://github.com/zanysoft/laravel-zip/graphs/commit-activity)[![Framwork](https://camo.githubusercontent.com/8f66b78b3bab6bacdba4262944e2a948aeab52d539e0b30e0f145a8e1bc0fabc/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4672616d776f726b2d6c61726176656c2d6f72616e67653f7374796c653d666c61742d73717561726526636f6c6f723d463035333430)](https://laravel.com/)

Laravel Exception Monitor
=========================

[](#laravel-exception-monitor)

This package notifies you when exceptions are thrown on some of your production application.

#### Installation

[](#installation)

```
composer require zanysoft/laravel-exception-monitor
```

If you’re on Laravel 5.4 or earlier, you’ll need to add the following to your `config/app.php` (for Laravel 5.5 and up these will be auto-discovered by Laravel):

```
'providers' => [
    //...
    ZanySoft\LaravelExceptionMonitor\ExceptionMonitorServiceProvider::class,
],

'aliases' => [
    //...
    'ExceptionMonitor' => ZanySoft\LaravelExceptionMonitor\Facades\ExceptionMonitor::class,
];
```

Publish the package config and view files to your application. Run these commands inside your terminal.

```
php artisan vendor:publish --provider="ZanySoft\LaravelExceptionMonitor\ExceptionMonitorServiceProvider"

```

You need set Incoming Webhooks for sending messages to [Slack](https://my.slack.com/services/new/incoming-webhook)and [MS Teams](https://docs.microsoft.com/en-us/microsoftteams/platform/concepts/connectors/connectors-using).

#### Configuration

[](#configuration)

Config File is pretty self-explanatory.

```
