atijust/laravel-rollbar
Rollbar integration for Laravel
Installation
Add atijust/laravel-rollbar to your composer.json:
{
"require": {
"atijust/laravel-rollbar": "dev-master"
}
}
Add the service provider in app/config/app.php:
'Atijust\LaravelRollbar\LaravelRollbarServiceProvider',
Publish the configuration file:
php artisan config:publish atijust/laravel-rollbar
Add your rollbar access token in app/config/packages/atijust/laravel-rollbar/config.php:
'access_token' => 'your rollbar access token',
Usage
// to report exceptions
Log::error($exception);
// to send log-like messages
Log::info('message', ['foo' => 'bar']);
Related Packages
saasscaleup/laravel-log-alarm
Laravel log Alarm help you to set up alarm when errors occur in your system and...
34,911
270
adaptit-darshan/exception-notifier
Production-ready exception notification system for Laravel 12+ with intelligent...
1,175
6