Laravel Userstamps Versions Save

Laravel Userstamps provides an Eloquent trait which automatically maintains `created_by` and `updated_by` columns on your model, populated by the currently authenticated user in your application.

0.5.6

4 years ago

Adds support for Laravel 6.x.

0.5.5

5 years ago

Adds support for Laravel 5.8.

0.5.4

5 years ago

Fixes a bug causing unnecessary events from being fired when a model is softly deleted.

Thanks to @mazyvan for the fix.

0.5.3

5 years ago

Adds support for Laravel 5.7.

0.5.2

5 years ago

The creator, editor and destroyer methods now respect custom column names.

Thanks to @tayfunkayahan for their help with this one.

0.5.1

6 years ago

Setting the UPDATED_BY constant to null will now disable maintaining an updated_by column.

0.5.0

6 years ago

Allow custom created_by, updated_by and deleted_by column names.

Support Laravel 5.6

Thanks to @tbirrell and @RomeroMsk for their input on this release.

0.4.0

6 years ago

Don't override created_by or updated_by when creating, if already set.

Don't override deleted_by when deleting, if already set.

0.3.0

6 years ago

Ensures SoftDeletes are correctly detected when loaded by a parent class.

0.2.3

7 years ago

Fixes a bug blocking deleted_by being set when fired on multiple records at once.