PHPackages                             vlinde/laravel-bugster - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Logging &amp; Monitoring](/categories/logging)
4. /
5. vlinde/laravel-bugster

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

vlinde/laravel-bugster
======================

A Laravel Nova tool.

V5.0.2(3d ago)03.2kMITPHPPHP ^8.2

Since Jan 4Pushed 1mo agoCompare

[ Source](https://github.com/vlinde/laravel-bugster)[ Packagist](https://packagist.org/packages/vlinde/laravel-bugster)[ RSS](/packages/vlinde-laravel-bugster/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (13)Versions (71)Used By (0)

AdvancedBugster
===============

[](#advancedbugster)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d8ad7dc2c010ee933868f92f441edaf9f431c2cc64b45cbd4881342591e815b3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f766c696e64652f6c61726176656c2d627567737465722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/vlinde/laravel-bugster)[![Total Downloads](https://camo.githubusercontent.com/36d22bc7827c23a11479de08bc8eb3396834ee46a2af20b9d9b1d864ad2f9775/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f766c696e64652f6c61726176656c2d627567737465722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/vlinde/laravel-bugster)[![Build Status](https://camo.githubusercontent.com/870077d45ef07cf2904056ed8df75bbce6c6a2309bc7ef9dd4ae48a708f7b5bb/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f766c696e64652f6c61726176656c2d627567737465722f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/vlinde/laravel-bugster)[![StyleCI](https://camo.githubusercontent.com/cb13a877afd1dbe223c631789c3f922d3ace958fdb334a9cce9b26afefbc2ebd/68747470733a2f2f7374796c6563692e696f2f7265706f732f31323334353637382f736869656c64)](https://styleci.io/repos/12345678)

#### Auto-detects every log file in the storage/logs folder and sorts all the errors by date.

[](#auto-detects-every-log-file-in-the-storagelogs-folder-and-sorts-all-the-errors-by-date)

#### Update ^1.1.2 custom categories and directories were added ( check config file )

[](#update-112-custom-categories-and-directories-were-added--check-config-file-)

Installation
------------

[](#installation)

Via Composer

```
$ composer require vlinde/laravel-bugster
```

Publish vendor for migrations then migrate

```
$ php artisan vendor:publish --tag=migrations
$ php artisan vendor:publish --tag=bugster.config
$ php artisan migrate
```

Usage
-----

[](#usage)

Add function to exception handler found in 'app/Exceptions/Handler.php'

```
public function renderForConsole($output, Throwable $e)
{
    $bugster = new BugsterLoadBugs();
    $bugster->saveError($output, $e, null, 'TERMINAL');

    parent::renderForConsole($output, $e);
}

public function render($request, Throwable $e)
{
    $render = parent::render($request, $e);

    $bugster = new BugsterLoadBugs;
    $bugster->saveError($request, $e, $render->getStatusCode());

    return $render;
}
```

How to move data to SQL

```
$ php artisan bugster:movetosql
```

How to delete older bugs

```
$ php artisan bugster:delete
```

You can add these commands to cron

```
$schedule->command('bugster:movetosql')->daily('00:30');
$schedule->command('bugster:delete')->daily('01:00');
$schedule->command('bugster:notify:statistics')->dailyAt('12:00');
$schedule->command('bugster:count-status-codes')->dailyAt('03:00');
```

Nova
----

[](#nova)

Register Bugster tool in NovaServiceProvider

```
use Vlinde\Bugster\Bugster;

public function tools()
{
    return [
        new Bugster;
    ];
}
```

Change log
----------

[](#change-log)

Please see the [changelog](changelog.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [contributing.md](contributing.md) for details and a todolist.

Security
--------

[](#security)

If you discover any security related issues, please email author email instead of using the issue tracker.

Credits
-------

[](#credits)

- [Vlinde](https://github.com/vlinde)

License
-------

[](#license)

license. Please see the [license file](license.md) for more information.

###  Health Score

54

—

FairBetter than 97% of packages

Maintenance95

Actively maintained with recent releases

Popularity16

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity80

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 66.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~28 days

Recently: every ~17 days

Total

70

Last Release

3d ago

Major Versions

V1.3.5 → V2.0.02021-07-14

V2.0.12 → V3.0.02022-08-30

V3.0.8 → V4.0.02023-04-10

V4.0.19 → V5.0.02026-04-28

PHP version history (2 changes)V5.0.0PHP ^8.1

V5.0.2PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/e0663cc3c9ca4ae9518ca84d8effc62c4aed193f06651095d6b8d4c9b36f816a?d=identicon)[vlinde](/maintainers/vlinde)

---

Top Contributors

[![marian-vlinde](https://avatars.githubusercontent.com/u/56548392?v=4)](https://github.com/marian-vlinde "marian-vlinde (48 commits)")[![PescaruAlexandruVlinde](https://avatars.githubusercontent.com/u/76211787?v=4)](https://github.com/PescaruAlexandruVlinde "PescaruAlexandruVlinde (24 commits)")

---

Tags

laravelnova

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/vlinde-laravel-bugster/health.svg)

```
[![Health](https://phpackages.com/badges/vlinde-laravel-bugster/health.svg)](https://phpackages.com/packages/vlinde-laravel-bugster)
```

###  Alternatives

[bolechen/nova-activitylog

A tool to activity logger to monitor the users of your Laravel Nova.

99683.9k4](/packages/bolechen-nova-activitylog)[laravel/nova-log-viewer

A Laravel Nova tool for viewing your application logs.

136301.3k1](/packages/laravel-nova-log-viewer)[php-junior/nova-logs

Provides a Log Viewer for Laravel Nova

77440.0k1](/packages/php-junior-nova-logs)[kabbouchi/nova-logs-tool

A Laravel Nova tool to manage and keep track of each one of your logs files.

73362.1k](/packages/kabbouchi-nova-logs-tool)[spatie/nova-tail-tool

A Laravel Nova tool to display the application log.

119128.2k1](/packages/spatie-nova-tail-tool)[dniccum/nova-documentation

A Laravel Nova tool that allows you to add markdown-based documentation to your administrator's dashboard.

37116.4k](/packages/dniccum-nova-documentation)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
