PHPackages                             eudu4rdo/laravelauditforge - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Logging &amp; Monitoring](/categories/logging)
4. /
5. eudu4rdo/laravelauditforge

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

eudu4rdo/laravelauditforge
==========================

A Laravel package for auditing model changes.

0.0.2(1y ago)24MITPHPPHP ^8.0

Since Jan 6Pushed 1y ago1 watchersCompare

[ Source](https://github.com/Eudu4rdo/LaravelAuditForge)[ Packagist](https://packagist.org/packages/eudu4rdo/laravelauditforge)[ RSS](/packages/eudu4rdo-laravelauditforge/feed)WikiDiscussions main Synced today

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

Laravel Audit Forge
===================

[](#laravel-audit-forge)

 [![Laravel Framework](https://camo.githubusercontent.com/10507d8dd321cd492cbb7f589e804016860c768592fbf93a24e30a7f5fb707ae/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4672616d65776f726b2d4c61726176656c2d626c75653f7374796c653d666c61742d737175617265266c6f676f3d6c61726176656c)](https://camo.githubusercontent.com/10507d8dd321cd492cbb7f589e804016860c768592fbf93a24e30a7f5fb707ae/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4672616d65776f726b2d4c61726176656c2d626c75653f7374796c653d666c61742d737175617265266c6f676f3d6c61726176656c) [![Version](https://camo.githubusercontent.com/bdfaefc0358110fde7669215b0c72405690ad09f309ceb4925eb41627a86fefc/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f56657273696f6e2d76302e302e322d677265656e3f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/bdfaefc0358110fde7669215b0c72405690ad09f309ceb4925eb41627a86fefc/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f56657273696f6e2d76302e302e322d677265656e3f7374796c653d666c61742d737175617265)

Laravel Audit Forge is a tool developed to integrate auditing features with Laravel, providing greater control over user actions. The key differentiator of Laravel Audit Forge is its support for queue usage, allowing for more efficient handling of auditing tasks. This version includes:
----------------------

[](#this-version-includes)

- Database change auditing: It is possible to choose which models in your structure will be monitored when actions such as insertion, update, and deletion are performed.
- Route auditing: Route auditing allows you to map the entire flow that your client followed within the application.

Requirements
------------

[](#requirements)

- PHP 8.0 or higher.
- Laravel 9 or higher.
- Composer

Instalation
-----------

[](#instalation)

In the project terminal, run the command below:

```
 composer require eudu4rdo/laravelauditforge
```

With the package installed, publish the migrations and configuration files:

```
 php artisan vendor:publish --provider="eudu4rdo\laravelauditforge\AuditForgeServiceProvider"
```

Run the migrations.

Basic Usage
-----------

[](#basic-usage)

To perform basic usage of the application, simply use the Auditable trait in the model you wish to monitor:

```
use App\Traits\Auditable;

class ExampleModel extends Model
{
    use Auditable;

    // Other model configurations
}
```

Configuration
-------------

[](#configuration)

The package provides flexible configurations to suit your auditing needs:

- Audit Events: Define the database connection, table, and primary key for logging events.
- Audit Routes: Enable route auditing, ignore specific routes or HTTP methods.
- User Settings: Link audit logs to users with customizable table and key settings.
- Job Processing: Optionally offload audit logging to Laravel's queue system. Customize these settings in the config/audit.php file after publishing the configuration.

Upcoming Features:
------------------

[](#upcoming-features)

- Authentication audit.

License
-------

[](#license)

This project is open-sourced software licensed under the [MIT License](LICENSE).

Contact
-------

[](#contact)

For questions or suggestions, reach out on GitHub or contact the repository owner directly. My links:

 [![](https://camo.githubusercontent.com/306b9dc9e6af92f3e92f1ac52aea768bcdd33898cc6d133bb6e8228928954af4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f476d61696c2d4431343833363f7374796c653d666f722d7468652d6261646765266c6f676f3d676d61696c266c6f676f436f6c6f723d7768697465)](mailto:eg47202@gmail.com) [![](https://camo.githubusercontent.com/835f91c273c180e842aa0b2fb0d5ccc52def20089589abbcefceb28317c583f8/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c696e6b6564496e2d3030373742353f7374796c653d666f722d7468652d6261646765266c6f676f3d6c696e6b6564696e266c6f676f436f6c6f723d7768697465)](https://www.linkedin.com/in/eudu4rdo/)

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance44

Moderate activity, may be stable

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity35

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~99 days

Total

2

Last Release

445d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/56921645?v=4)[Eduardo Garcia](/maintainers/Eudu4rdo)[@Eudu4rdo](https://github.com/Eudu4rdo)

---

Top Contributors

[![Eudu4rdo](https://avatars.githubusercontent.com/u/56921645?v=4)](https://github.com/Eudu4rdo "Eudu4rdo (11 commits)")

---

Tags

laravelAudit

### Embed Badge

![Health badge](/badges/eudu4rdo-laravelauditforge/health.svg)

```
[![Health](https://phpackages.com/badges/eudu4rdo-laravelauditforge/health.svg)](https://phpackages.com/packages/eudu4rdo-laravelauditforge)
```

###  Alternatives

[spatie/laravel-health

Monitor the health of a Laravel application

87512.0M164](/packages/spatie-laravel-health)[spatie/laravel-flare

Send Laravel errors to Flare

111.4M7](/packages/spatie-laravel-flare)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
