rezak / error-monitoring-laravel
error monitoring for laravel applications.
Installs: 61
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/rezak/error-monitoring-laravel
This package is not auto-updated.
Last update: 2025-10-07 01:44:35 UTC
README
Installation
register in our website
http://error-monitoring.pzhame.ir/register
create account and get token :
in your account , create a project and get specific token http://error-monitoring.pzhame.ir
install package via composer
composer require rezak/error-monitoring-laravel:dev-master
publish vendor
php artisan vendor:publish --provider="RezaK\ErrorMonitoringLaravel\ErrorMonitoringServiceProvider"
environment config
add ERROR_MONITORING=true
in your .env file
set your token in published file
in config/error-monitoring-laravel.php set your token
<?php return [ 'token' => 'YOUR_TOKEN', ];
Usage
in app/Exceptions/Handler.php add blow code
public function register() { $this->reportable(function (Throwable $e) { \RezaK\ErrorMonitoringLaravel\Monitor::reportError($e); }); }
now , whenever an error happend you can what complete detail in our website
Author
Reza Karimi