PHPackages                             zitech/laravel-auditable-uuid - 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. zitech/laravel-auditable-uuid

ActiveLaravel-package[Database &amp; ORM](/categories/database)

zitech/laravel-auditable-uuid
=============================

A simple laravel auditing table uuid package for eloquent model

28PHP

Since Aug 4Pushed 6y ago1 watchersCompare

[ Source](https://github.com/faozimipa/laravel-auditable-uuid)[ Packagist](https://packagist.org/packages/zitech/laravel-auditable-uuid)[ RSS](/packages/zitech-laravel-auditable-uuid/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

This is Auditable Laravel with Uiid Package
-------------------------------------------

[](#this-is-auditable-laravel-with-uiid-package)

Install via Composer
--------------------

[](#install-via-composer)

```
composer require zitech/laravel-auditable-uuid
```

Publish
-------

[](#publish)

```
php artisan vendor:publish
```

set ziAuditable.php set 'useUuid' =&gt; true,

Usage
-----

[](#usage)

```
Schema::create('users', function (Blueprint $table) {
    $table->uuid('id');
    $table->string('name', 100);
    $table->auditable();
	$table->primary('id');
    $table->timestamps();
});
```

drop migrations

```
Schema::create('users', function (Blueprint $table) {
    $table->dropAuditable();
});
```

on User model

```
namespace App;

use Zitech\LaravelAuditableUuid\AuditableTrait;

class User extends Model
{
    use AuditableTrait;
    public $incrementing = false;
	...................
}
```

\*\*\* Note \*\*\*

### this is just test package

[](#this-is-just-test-package)

###  Health Score

19

—

LowBetter than 9% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity37

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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/6082895?v=4)[FAOZI](/maintainers/faozimipa)[@faozimipa](https://github.com/faozimipa)

---

Top Contributors

[![faozimipa](https://avatars.githubusercontent.com/u/6082895?v=4)](https://github.com/faozimipa "faozimipa (10 commits)")

### Embed Badge

![Health badge](/badges/zitech-laravel-auditable-uuid/health.svg)

```
[![Health](https://phpackages.com/badges/zitech-laravel-auditable-uuid/health.svg)](https://phpackages.com/packages/zitech-laravel-auditable-uuid)
```

###  Alternatives

[jdorn/sql-formatter

a PHP SQL highlighting library

3.9k116.5M113](/packages/jdorn-sql-formatter)[propel/propel1

Propel is an open-source Object-Relational Mapping (ORM) for PHP5.

8351.6M87](/packages/propel-propel1)[pgvector/pgvector

pgvector support for PHP

198628.3k10](/packages/pgvector-pgvector)

PHPackages © 2026

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