2017 © Pedro Peláez
 

library reporter

Exception reporter for laravel

image

daimakuai-ext/reporter

Exception reporter for laravel

  • Friday, November 24, 2017
  • by daimakuai
  • Repository
  • 0 Watchers
  • 0 Stars
  • 21 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 17 % Grown

The README.md

Exception reporter for daimakuai-admin

This tool stores the exception information into the database and provides a developer-friendly web interface to view the exception information., (*1)

StyleCI Packagist Total Downloads Pull request welcome, (*2)

Screenshot

daimakuai-admin_exceptions, (*3)

Installation

$ composer require daimakuai-ext/reporter -vvv

$ php artisan vendor:publish --tag=daimakuai-admin-reporter

$ php artisan migrate --path=vendor/daimakuai-ext/reporter/database/migrations

$ php artisan admin:import reporter

Open app/Exceptions/Handler.php, call Reporter::report() inside report method:, (*4)

<?php

namespace App\Exceptions;

use Jblv\Admin\Reporter\Reporter;
use Exception;
use Illuminate\Auth\AuthenticationException;
use Illuminate\Validation\ValidationException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;

class Handler extends ExceptionHandler
{
    ...

    public function report(Exception $exception)
    {
        if ($this->shouldReport($exception)) {
            Reporter::report($exception);
        }

//        parent::report($exception);
    }

    ...

}

Open http://localhost/admin/exceptions to view exceptions., (*5)

License

Licensed under The MIT License (MIT)., (*6)

The Versions

24/11 2017

dev-master

9999999-dev https://github.com/daimakuai-ext/reporter

Exception reporter for laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by yt

laravel exception reporter daimakuai

24/11 2017

dev-analysis-8KKdrR

dev-analysis-8KKdrR https://github.com/daimakuai-ext/reporter

Exception reporter for laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by yt

laravel exception reporter daimakuai