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
==================================

Little Laravel package to notify you about exceptions in your application.

1.0.1(2y ago)1278MITPHPPHP &gt;=7.0

Since Jul 26Pushed 1y 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 1mo ago

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

[![Downloads](https://camo.githubusercontent.com/2cf0f1fc7ec9ddb700c34831e1471c78a918da5333ccf67a3e88366bca1fcdcf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7a616e79736f66742f6c61726176656c2d657863657074696f6e2d6d6f6e69746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/zanysoft/laravel-exception-monitor)[![License](https://camo.githubusercontent.com/30597ff9a350144f03bffdd9183e16468e0b3ca1193e1d08591d992622738d55/687474703a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](https://tldrlegal.com/license/mit-license)[![GitHub tag](https://camo.githubusercontent.com/f72ea2a19676c68387395150708342c0081eaa92a716573a67986d4d93d11d74/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7461672f5a616e79536f66742f6c61726176656c2d657863657074696f6e2d6d6f6e69746f722e7376673f7374796c653d666c617426636f6c6f723d696e666f726d6174696f6e616c)](https://github.com/zanysoft/laravel-exception-monitor/tags)

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

[](#laravel-exception-monitor)

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

[![Slack Preview](/preview.jpg)](/preview.jpg)

#### 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](https://my.slack.com/services/new/incoming-webhook) for sending messages to Slack.

#### Configuration

[](#configuration)

Config File is pretty self-explanatory.

```
