2017 © Pedro Peláez
 

library reporter

Exception reporter for laravel

image

laravel-admin-ext/reporter

Exception reporter for laravel

  • Tuesday, April 24, 2018
  • by encore
  • Repository
  • 2 Watchers
  • 14 Stars
  • 7,052 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 5 Forks
  • 0 Open issues
  • 4 Versions
  • 43 % Grown

The README.md

Exception reporter for laravel-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

laravel-admin_exceptions, (*3)

Installation

$ composer require laravel-admin-ext/reporter -vvv

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

$ php artisan migrate --path=vendor/laravel-admin-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 Encore\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/04 2018

dev-master

9999999-dev https://github.com/laravel-admin-extensions/reporter

Exception reporter for laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by z-song

exception laravel-admin reporter

24/04 2018

v1.0.1

1.0.1.0 https://github.com/laravel-admin-extensions/reporter

Exception reporter for laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by z-song

exception laravel-admin reporter

28/09 2017

v1.0.0

1.0.0.0 https://github.com/laravel-admin-extensions/reporter

Exception reporter for laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by z-song

exception laravel-admin reporter

28/09 2017

dev-analysis-qMxRN3

dev-analysis-qMxRN3 https://github.com/laravel-admin-extensions/reporter

Exception reporter for laravel

  Sources   Download

MIT

The Requires

 

The Development Requires

by z-song

exception laravel-admin reporter