munettt / userstamps
Userstamps for Laravel
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/munettt/userstamps
Requires
- php: ^7.2|^8.0
- laravel/framework: ^5.5|^6|^7|^8|^9
This package is auto-updated.
Last update: 2025-12-05 01:03:13 UTC
README
Create created_by and updated_by for your migrations.
$table->userstamps();
will add
created_by and updated_by column
Comes with handy trait to use in your model
use Munettt\Userstamps\Userstamps; class Book extends Model { use Userstamps; // }
which register events upon creating/updating model with appropriate created_by / updated_by user id.