really4you / laravel-optimistic
There is no license information available for the latest version (dev-master) of this package.
Laravel Concurrent updating for model.
dev-master
2021-09-03 02:27 UTC
Requires
- php: ^7.1.3
- laravel/framework: ^5.8|^6.0|^7.0
This package is auto-updated.
Last update: 2026-03-29 00:54:50 UTC
README
$ composer require really4you/laravel-optimistic
Usage
Add Really4you\LaravelOptimistic\Optimistic trait to the model and set Optimistic attributes:
use Really4you\laravelOptimistic\Optimistic; class GoodsPatent extends Model { use Optimistic; /** * the name of the "optimistic" column. * * @var string */ protected $versionAt = 'updating_column'; <...> }