vlinde/laravel-bugster

A Laravel Nova tool.
3,223
Install
composer require vlinde/laravel-bugster
Latest Version:V5.0.2
PHP:^8.2
License:MIT
Last Updated:May 7, 2026
Links: GitHub  ·  Packagist
Maintainer: vlinde

AdvancedBugster

Latest Version on Packagist Total Downloads Build Status StyleCI

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

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

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

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

Register Bugster tool in NovaServiceProvider

use Vlinde\Bugster\Bugster;

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

Change log

Please see the changelog for more information on what has changed recently.

Contributing

Please see contributing.md for details and a todolist.

Security

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

Credits

License

license. Please see the license file for more information.

Related Packages

maatwebsite/laravel-nova-excel

Supercharged Excel exports for Laravel Nova Resources

7,034,737 401
vyuldashev/nova-permission

A Laravel Nova tool for Spatie's Permission library.

2,632,252 430
unm/laravel4-opencloud

A laravel 4.1 service provider package that wraps the Rackspace/Openstack PHP SD...

4 7
spatie/nova-backup-tool

A Laravel Nova tool to backup your application.

599,910 360
spatie/nova-tail-tool

A Laravel Nova tool to display the application log.

129,750 119