dsginnosource/laravel-application-manager

The Laravel Application Manager client

1.0 2021-11-23 20:38 UTC

This package is auto-updated.

Last update: 2025-09-20 11:54:12 UTC


README

Custom Data

You can add any data you would like to the reports that get sent. Just add your data to your AppServiceProvider like this:

    public function boot()
    {
        LaravelApplicationManager::setCustomData(function () {
            return [
                'my_custom_property' => MyCustomClass::myFunction(),
            ];
        });
    }