PHPackages                             signifly/laravel-manageable - 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. signifly/laravel-manageable

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

signifly/laravel-manageable
===========================

Track users who manages models in your Laravel app

v3.0.2(2y ago)407.2k5MITPHPPHP ^7.4|^8.0

Since Jan 28Pushed 2y ago2 watchersCompare

[ Source](https://github.com/signifly/laravel-manageable)[ Packagist](https://packagist.org/packages/signifly/laravel-manageable)[ Docs](https://github.com/signifly/laravel-manageable)[ RSS](/packages/signifly-laravel-manageable/feed)WikiDiscussions master Synced 2w ago

READMEChangelog (10)Dependencies (4)Versions (18)Used By (0)

Track users who manage models in your Laravel app
=================================================

[](#track-users-who-manage-models-in-your-laravel-app)

[![Latest Version on Packagist](https://camo.githubusercontent.com/0b8eaea17670fb4c441cdd1f2d51b2b5c38f33a9bd0c3adf5603b1e361f8d0e9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7369676e69666c792f6c61726176656c2d6d616e61676561626c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/signifly/laravel-manageable)[![Build Status](https://camo.githubusercontent.com/ac34af76841d1670211350638995666e3c51528844a939b8a9c5238ca2e396a3/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f7369676e69666c792f6c61726176656c2d6d616e61676561626c652f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/signifly/laravel-manageable)[![StyleCI](https://camo.githubusercontent.com/910e964c584b0184199784015a9e80f55199826e777a80482befd7e8d378fa4b/68747470733a2f2f7374796c6563692e696f2f7265706f732f3131393231343230322f736869656c643f6272616e63683d6d6173746572)](https://styleci.io/repos/119214202)[![Quality Score](https://camo.githubusercontent.com/0e7dca34c9b3ec5415ea7425de84a9149e98401c17a13af5db33e4da831a9160/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f7369676e69666c792f6c61726176656c2d6d616e61676561626c652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/signifly/laravel-manageable)[![Total Downloads](https://camo.githubusercontent.com/012baec2c824d7bc6fec920d06aa48df7783a4ad4d128193b5d2469bb175ed2a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7369676e69666c792f6c61726176656c2d6d616e61676561626c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/signifly/laravel-manageable)

The `signifly/laravel-manageable` package allows you to easily track who creates/updates your models.

All you have to do to get started is:

```
// 1. Add required columns to your table by using our macro manageable
Schema::create('orders', function (Blueprint $table) {
    // ...
    $table->manageable();

    // params: $bigIntegers (default: true), $foreignTable (default: 'users'), $foreignKey (default: 'id')
    $table->manageable(false, 'some_users_table', 'u_id');
});

// 2. Add the Manageable trait to your model
class Order extends Model
{
    use Manageable;
}
```

The macro `manageable` adds the following to your table:

```
$this->unsignedBigInteger('created_by')->nullable()->index();
$this->unsignedBigInteger('updated_by')->nullable()->index();

$this->foreign('created_by')
    ->references('id')
    ->on('users')
    ->onDelete('set null');

$this->foreign('updated_by')
    ->references('id')
    ->on('users')
    ->onDelete('set null');
```

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

[](#documentation)

Until further documentation is provided, please have a look at the tests.

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

[](#installation)

You can install the package via composer:

```
composer require signifly/laravel-manageable
```

The package will automatically register itself.

You can publish the config with:

```
php artisan vendor:publish --provider="Signifly\Manageable\ManageableServiceProvider"
```

Testing
-------

[](#testing)

```
composer test
```

Security
--------

[](#security)

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

Credits
-------

[](#credits)

- [Morten Poul Jensen](https://github.com/pactode)
- [All contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

39

—

LowBetter than 85% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity30

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity77

Established project with proven stability

 Bus Factor1

Top contributor holds 90.9% 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 ~141 days

Recently: every ~291 days

Total

16

Last Release

952d ago

Major Versions

v1.2.0 → v2.0.02019-03-21

v2.3.2 → v3.0.02023-11-21

PHP version history (5 changes)v1.0.0PHP ^7.0

v1.1.0PHP ^7.1

v2.3.0PHP ^7.2.5

v2.3.2PHP ^7.2.5 || ^8.0

v3.0.0PHP ^7.4|^8.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1193081?v=4)[Signifly](/maintainers/signifly)[@signifly](https://github.com/signifly)

---

Top Contributors

[![pactode](https://avatars.githubusercontent.com/u/5956778?v=4)](https://github.com/pactode "pactode (50 commits)")[![Razorsheep](https://avatars.githubusercontent.com/u/459217?v=4)](https://github.com/Razorsheep "Razorsheep (3 commits)")[![telkins](https://avatars.githubusercontent.com/u/53731?v=4)](https://github.com/telkins "telkins (2 commits)")

---

Tags

eloquentlaravel

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/signifly-laravel-manageable/health.svg)

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

###  Alternatives

[kirschbaum-development/eloquent-power-joins

The Laravel magic applied to joins.

1.6k29.9M42](/packages/kirschbaum-development-eloquent-power-joins)[psalm/plugin-laravel

Psalm plugin for Laravel

3345.1M337](/packages/psalm-plugin-laravel)[yajra/laravel-oci8

Oracle DB driver for Laravel via OCI8

8723.1M23](/packages/yajra-laravel-oci8)[glushkovds/phpclickhouse-laravel

Adapter of the most popular library https://github.com/smi2/phpClickHouse to Laravel

2051.4M2](/packages/glushkovds-phpclickhouse-laravel)[clickbar/laravel-magellan

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

438834.4k1](/packages/clickbar-laravel-magellan)[laravel-liberu/laravel-gedcom

A package that converts gedcom files to Eloquent models

782.5k1](/packages/laravel-liberu-laravel-gedcom)

PHPackages © 2026

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