Laravel package that hides technical error details from end users and emails full reports.
meita/debuger is a Laravel package for laravel package that hides technical error details from end users and emails full reports..
It currently has 0 GitHub stars and 31 downloads on Packagist (latest version 1.0.4).
Install it with composer require meita/debuger.
Discover more Laravel packages by meita
or browse all Laravel packages to compare alternatives.
Last updated
Laravel package that replaces the default exception handling flow with a friendly error page for end users while emailing the full stack trace and request context to you.
composer require meita/debuger
php artisan vendor:publish --tag=debuger-config
php artisan vendor:publish --tag=debuger-views
The service provider is auto-discovered. No manual registration is needed.
Set your desired values in config/debuger.php or via environment variables:
DEBUGER_ENABLED (default true) – turn the package on or off.DEBUGER_USER_MESSAGE – text shown to users instead of the real error.DEBUGER_MAIL_TO – recipient(s) for exception reports (required to send emails). Supports a single address or a comma/semicolon separated list.DEBUGER_MAIL_SUBJECT – subject prefix for exception emails.DEBUGER_MAIL_FROM – optional from address for outgoing reports.DEBUGER_MAIL_IN_CONSOLE (default true) – send emails for exceptions thrown from CLI (queue workers, scheduler, artisan, ...).DEBUGER_REFERENCE_PREFIX – prefix for the generated reference id.Note: the config also supports the common DEBUGGER_* env var spelling as a fallback.
DEBUGER_ENABLED=false to revert to the default behavior without uninstalling.hidden_fields are stripped from the email to avoid leaking secrets.