onza-me/helpers

Laravel helpers.

Installs: 40

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

pkg:composer/onza-me/helpers

1.0.0 2020-09-11 18:04 UTC

This package is auto-updated.

Last update: 2025-09-28 22:53:43 UTC


README

Publish configurations

php artisan vendor:publish --provider="OnzaMe\Helpers\HelpersServiceProvider"

Sentry initialization

php artisan vendor:publish --provider="Sentry\Laravel\ServiceProvider"

Configure Sentry

SENTRY_LARAVEL_DSN={DSN URL}

You can easily verify that Sentry is capturing errors in your Laravel application by creating a debug route that will throw an exception:

Route::get('/debug-sentry', function () {
    throw new Exception('My first Sentry error!');
});