rezak/error-monitoring-laravel is a Laravel package for error monitoring for laravel applications..
It currently has 0 GitHub stars and 65 downloads on Packagist.
Install it with composer require rezak/error-monitoring-laravel.
Discover more Laravel packages by rezak
or browse all Laravel packages to compare alternatives.
Last updated
http://error-monitoring.pzhame.ir/register
in your account , create a project and get specific token http://error-monitoring.pzhame.ir
composer require rezak/error-monitoring-laravel:dev-master
php artisan vendor:publish --provider="RezaK\ErrorMonitoringLaravel\ErrorMonitoringServiceProvider"
add ERROR_MONITORING=true in your .env file
in config/error-monitoring-laravel.php set your token
<?php
return [
'token' => 'YOUR_TOKEN',
];
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
Reza Karimi