live-controls/trellog

There is no license information available for the latest version (v1.0.12) of this package.

Error logging from Laravel to Trello

v1.0.12 2025-04-25 01:19 UTC

This package is auto-updated.

Last update: 2025-04-25 01:20:42 UTC


README

Logger for Laravel to Trello

Env variables

TRELLOG_KEY => Trello Api Key TRELLOG_TOKEN => Trello Api Token TRELLOG_LIST_ERRORS => List to add errors

Usage

Add to bootstrap/app.php:

->withExceptions(function (Exceptions $exceptions) {
    $exceptions->report(function (\Throwable $e) {
        SendTrellog::dispatch($e);
    });
})