PHPackages                             bugtower/bugtower-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. bugtower/bugtower-report

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

bugtower/bugtower-report
========================

BugTower Log saver

1.1(11y ago)014MITPHPPHP &gt;=5.3.0

Since May 6Pushed 11y ago1 watchersCompare

[ Source](https://github.com/bugtower/laravel-report)[ Packagist](https://packagist.org/packages/bugtower/bugtower-report)[ Docs](http://bugtower.net)[ RSS](/packages/bugtower-bugtower-report/feed)WikiDiscussions master Synced 1mo ago

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

Notifier for Laravel 5
======================

[](#notifier-for-laravel-5)

Instant notifications for yours errors and exceptions on your Laravel php applications.

[BugTower](https://bugtower.net) captures errors in real-time from your web and android applications, helping you to understand and resolve them as fast as possible.

How to Install
--------------

[](#how-to-install)

1. Install the `bugtower/bugtower-report` package

    ```
    $ composer require "bugtower/bugtower-report": "dev-master"
    ```
2. Update `config/app.php`

    ```
    # Add `BugsnagLaravelServiceProvider` to the `providers` array
    'providers' => array(
        ...
        'BugTower\BugTowerLaravel\BugTowerLaravelServiceProvider',
    )

    # And in aliases add following
    'aliases' => array(
        ...
        'BugTower' => 'BugTower\BugTowerLaravel\BugTowerFacade',
    )
    ```
3. Change exception handler in `App/Exceptions/Handler.php`.

    ```
    # COMMENT this line
    use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
    ```

    ```
    # ADD this line instead
    use BugTower\BugTowerLaravel\BugTowerExceptionHandler as ExceptionHandler;
    ```

    After this change, your file should look like this:

    ```
