This package will help you understand changes in your Eloquent models, by providing information about possible discrepancies and anomalies that could indicate business concerns or suspect activities. Laravel Auditing allows you to keep a history of model changes by simply using a trait. Retrieving the audited data is straightforward, making it possible to display it in various ways. Auditing events provide a simple observer pattern implementation, allowing you to subscribe and listen to the audit events. Ability to use an Audit record to transition between the states of an Auditable model. If needed, the Audit data can be transformed before being stored. The package comes with a number of useful features that make it easy to customize and control the auditing process. For instance, it includes an Auditor class that allows developers to audit and clear audit records and Modifiers that can be used to modify attributes before they are audited.
Features
- Audit your Eloquent models
- The Auditor class is responsible for auditing and clearing Audit records
- Allows you to modify attributes before being audited
- The metadata and modified data can be accessed in several ways
- Resolvers provide a convenient way to get the basic data for audit
- Besides storing model attribute changes, drivers also handle pruning when an audit threshold is set