PHPackages                             managemize/laravel-fingerprints - 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. managemize/laravel-fingerprints

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

managemize/laravel-fingerprints
===============================

Laravel FingerPrints for models

2.0.4(3y ago)517MITPHPPHP ^8.1

Since Mar 11Pushed 3y ago3 watchersCompare

[ Source](https://github.com/managemize/laravel-fingerprints)[ Packagist](https://packagist.org/packages/managemize/laravel-fingerprints)[ Docs](https://github.com/managemize/laravel-fingerprints)[ RSS](/packages/managemize-laravel-fingerprints/feed)WikiDiscussions 2.x Synced 1mo ago

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

[![](https://camo.githubusercontent.com/1e900af18a5bbda8cf1b54b733ec8c00a394c5eb6b815ae52d4225cf0b25f323/68747470733a2f2f6d616e6167656d697a652e636f6d2f66617669636f6e2d33327833322e706e67)](https://camo.githubusercontent.com/1e900af18a5bbda8cf1b54b733ec8c00a394c5eb6b815ae52d4225cf0b25f323/68747470733a2f2f6d616e6167656d697a652e636f6d2f66617669636f6e2d33327833322e706e67) managemize/laravel-fingerprints
=================================================================================================================================================================================================================================================================================================================================================================================================================

[](#-managemizelaravel-fingerprints)

[![Latest Version on Packagist](https://camo.githubusercontent.com/4326f71ab9f2d5846173f357735cfefda06c15408aee387cd60b1b4e35de7a8e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d616e6167656d697a652f6c61726176656c2d66696e6765727072696e74732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/managemize/laravel-fingerprints)[![Total Downloads](https://camo.githubusercontent.com/5230d5512562d5c4acb35b3f8c06a5684808dad4c49b5707c159fac658344dbe/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d616e6167656d697a652f6c61726176656c2d66696e6765727072696e74732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/managemize/laravel-fingerprints)[![GitHub Actions](https://github.com/managemize/laravel-fingerprints/actions/workflows/main.yml/badge.svg)](https://github.com/managemize/laravel-fingerprints/actions/workflows/main.yml/badge.svg)

This laravel package will allow your models to record the the created, updated and deleted by User FingerPrints

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

[](#installation)

You can install the package via composer:

```
composer require managemize/laravel-fingerprints
```

Laravel Support
---------------

[](#laravel-support)

Package VersionLaravel Version Support^1.09.x^2.09.xUpgrade from v1 to v2
---------------------

[](#upgrade-from-v1-to-v2)

Just rename the trait from your models from HasUserFingerPrint to HasFingerPrints

Usage
-----

[](#usage)

Add the trait to your models

```
use HasFingerPrints;
```

If you need to set custom fields for fingerprints :

```
protected array $userFingerPrintFields = [
    'create' => 'created_by',
    'update' => 'updated_by',
    'delete' => 'deleted_by',
];
```

If you need to activate or deactivate a fingerprint for a model:

```
protected array $userFingerPrint = [
    'create' => true, // false to deactivate
    'update' => true, // false to deactivate
    'delete' => true, // false to deactivate
];
```

### Testing

[](#testing)

```
composer test
php artisan test
```

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

### TODO

[](#todo)

- Uuid support

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Pedro Monteiro](https://github.com/managemize)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 75% 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 ~34 days

Recently: every ~75 days

Total

10

Last Release

1218d ago

Major Versions

1.0.x-dev → 2.0.02022-03-17

PHP version history (2 changes)1.0.0PHP ^7.4|^8.0

2.0.4PHP ^8.1

### Community

Maintainers

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

---

Top Contributors

[![mortalkiller](https://avatars.githubusercontent.com/u/16718373?v=4)](https://github.com/mortalkiller "mortalkiller (18 commits)")[![pedrotrek](https://avatars.githubusercontent.com/u/99328371?v=4)](https://github.com/pedrotrek "pedrotrek (4 commits)")[![managemize](https://avatars.githubusercontent.com/u/101146536?v=4)](https://github.com/managemize "managemize (2 commits)")

---

Tags

managemizelaravel-fingerprints

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/managemize-laravel-fingerprints/health.svg)

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

###  Alternatives

[illuminate/database

The Illuminate Database package.

2.8k52.4M9.4k](/packages/illuminate-database)[cybercog/laravel-love

Make Laravel Eloquent models reactable with any type of emotions in a minutes!

1.2k302.7k1](/packages/cybercog-laravel-love)[cviebrock/eloquent-taggable

Easy ability to tag your Eloquent models in Laravel.

567694.8k3](/packages/cviebrock-eloquent-taggable)[clickbar/laravel-magellan

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

423715.4k1](/packages/clickbar-laravel-magellan)[genealabs/laravel-pivot-events

This package introduces new eloquent events for sync(), attach(), detach() or updateExistingPivot() methods on BelongsToMany relation.

1404.9M8](/packages/genealabs-laravel-pivot-events)[reedware/laravel-relation-joins

Adds the ability to join on a relationship by name.

2121.2M13](/packages/reedware-laravel-relation-joins)

PHPackages © 2026

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