PHPackages                             charlgottschalk/laravel-aware - 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. [Database &amp; ORM](/categories/database)
4. /
5. charlgottschalk/laravel-aware

ActiveLibrary[Database &amp; ORM](/categories/database)

charlgottschalk/laravel-aware
=============================

A simple auditing package to keep track of your Eloquent model changes

1.1.0(6mo ago)020[5 PRs](https://github.com/CharlGottschalk/laravel-aware/pulls)MITPHPPHP ^8.1CI passing

Since May 26Pushed 6mo agoCompare

[ Source](https://github.com/CharlGottschalk/laravel-aware)[ Packagist](https://packagist.org/packages/charlgottschalk/laravel-aware)[ Docs](https://github.com/CharlGottschalk/laravel-aware)[ GitHub Sponsors](https://github.com/CharlGottschalk)[ RSS](/packages/charlgottschalk-laravel-aware/feed)WikiDiscussions develop Synced 1mo ago

READMEChangelog (2)Dependencies (11)Versions (9)Used By (0)

Aware tracks changes to Eloquent models.
========================================

[](#aware-tracks-changes-to-eloquent-models)

[![Latest Version on Packagist](https://camo.githubusercontent.com/039bbf6c98841ece85a4de7f7f1b0ea23707e653602a55fb5951834e3fcf47d2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f636861726c676f7474736368616c6b2f6c61726176656c2d61776172652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/charlgottschalk/laravel-aware)[![GitHub Tests Action Status](https://camo.githubusercontent.com/f20a017257bc1cd23cbc136ca7ecd4907891f4fb95ded50a1986e2457182c1b1/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f636861726c676f7474736368616c6b2f6c61726176656c2d61776172652f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/CharlGottschalk/laravel-aware/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/eafbbf3853122aaa93792102de9f4151c7f0d7568baf0596c00067b59e8bb6e8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f636861726c676f7474736368616c6b2f6c61726176656c2d61776172652f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/CharlGottschalk/laravel-aware/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/dcc15b9cf35c28ce57c729071ad47b9d9fc8f81c5f240a3f77d3ea82751b8369/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636861726c676f7474736368616c6b2f6c61726176656c2d61776172652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/charlgottschalk/laravel-aware)

Introduction
------------

[](#introduction)

Aware is a simple tool that tracks changes to Eloquent models and provides a way to access the changes made to them.

It uses Laravel's built-in event system to listen for model events and records the changes made to the model's attributes by creating trackers that are dispatched with jobs.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require charlgottschalk/laravel-aware
```

Run the installation command:

```
php artisan aware:install
```

Run the migrations to create the necessary database tables:

```
php artisan migrate
```

You're ready to go and tracking will happen automatically.

Documentation
-------------

[](#documentation)

For more in-depth information and setup, please read the [documentation](https://charlgottschalk.github.io/laravel-aware/).

Credits
-------

[](#credits)

- [Charl Gottschalk](https://github.com/CharlGottschalk)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

35

—

LowBetter than 79% of packages

Maintenance68

Regular maintenance activity

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 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 ~163 days

Total

2

Last Release

188d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e50d35635e46c0c65ffd0c321c06a469419ac247eab8572a1140ba2270b40459?d=identicon)[CharlGottschalk](/maintainers/CharlGottschalk)

---

Top Contributors

[![CharlGottschalk](https://avatars.githubusercontent.com/u/2204385?v=4)](https://github.com/CharlGottschalk "CharlGottschalk (27 commits)")

---

Tags

auditingeloquentlaraveltrackinglaravelAuditawareCharlGottschalklaravel-aware

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/charlgottschalk-laravel-aware/health.svg)

```
[![Health](https://phpackages.com/badges/charlgottschalk-laravel-aware/health.svg)](https://phpackages.com/packages/charlgottschalk-laravel-aware)
```

###  Alternatives

[dyrynda/laravel-model-uuid

This package allows you to easily work with UUIDs in your Laravel models.

4802.8M8](/packages/dyrynda-laravel-model-uuid)[spatie/laravel-model-flags

Add flags to Eloquent models

4301.1M1](/packages/spatie-laravel-model-flags)[clickbar/laravel-magellan

This package provides functionality for working with the postgis extension in Laravel.

423715.4k1](/packages/clickbar-laravel-magellan)[spatie/laravel-sql-commenter

Add comments to SQL queries made by Laravel

1931.4M1](/packages/spatie-laravel-sql-commenter)[spatie/laravel-deleted-models

Automatically copy deleted records to a separate table

409109.8k4](/packages/spatie-laravel-deleted-models)[wnx/laravel-backup-restore

A package to restore database backups made with spatie/laravel-backup.

203330.1k2](/packages/wnx-laravel-backup-restore)

PHPackages © 2026

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