thana / createupdatedeleteby
Automatically manage created_by, updated_by, and deleted_by fields in Laravel models.
Package info
github.com/sereyvathanasuy/createupdatedeleteby
pkg:composer/thana/createupdatedeleteby
v1.1.0
2026-06-08 01:54 UTC
Requires
- php: ^8.3
- illuminate/database: ^10.0|^11.0|^12.0|^13.0
- illuminate/support: ^10.0|^11.0|^12.0|^13.0
Requires (Dev)
- orchestra/testbench: ^11.0
README
A Laravel package for easily creating, updating, and deleting records.
Installation
You can install the package via Composer:
composer require thana/createupdatedeleteby
Usage
To use the package, add the service provider in your config/app.php:
'providers' => [ Thana\CreateUpdateDeleteBy\CreateUpdateDeleteByServiceProvider::class, ],