onza-me/helpers

Laravel helpers.

1.0.0 2020-09-11 18:04 UTC

This package is auto-updated.

Last update: 2024-03-28 19:50:00 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!');
});