dsginnosource/laravel-application-manager

The Laravel Application Manager client

Installs: 3 822

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 1

Open Issues: 0

pkg:composer/dsginnosource/laravel-application-manager

1.0 2021-11-23 20:38 UTC

This package is auto-updated.

Last update: 2025-12-20 12:32:34 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(),
            ];
        });
    }