sinarajabpour1998/log-manager
Laravel log manager with UI components and migrations to store custom activity logs and system error logs in database tables. Define log types in config, use LogFacade to generate logs, and hook into Exception Handler to capture errors.
logs table) for user behavior trends.For Executives: "This package lets us automate audit logging—tracking user actions (logins, registrations) and system errors—without hiring engineers to build it. It’s a $0 cost (MIT license) and integrates seamlessly with Laravel, reducing our reliance on third-party tools. For example, we could use it to comply with GDPR by logging user consent changes, or debug production issues faster by centralizing errors in a searchable database table. The trade-off? We forgo real-time log streaming (which we don’t need yet) for a lightweight, scalable solution that scales with our team’s resources."
For Engineering: *"This is a drop-in Laravel logging solution that:
LogFacade::generateLog("login")) to a database table with predefined types (configurable via log_types).ExceptionHandler (no manual log writing).BaseFacade fix (v1.2.3) resolves a critical edge case, and it’s been stable since 2021. We’d need to:
php artisan vendor:publish).logs and error_logs tables.config/log-manager.php.
Downside: No active maintenance (last release 2021), but the codebase is simple enough to fork if needed. Alternatives like Sentry would add complexity and cost for our current needs."*How can I help you explore Laravel packages today?