munettt/userstamps

Laravel 的 Userstamps

v0.4.0 2022-02-04 16:15 UTC

This package is auto-updated.

Last update: 2024-09-04 22:06:35 UTC


README

为您的迁移创建 created_by 和 updated_by。

$table->userstamps();

将会添加

created_byupdated_by

包含方便的特质,可用于您的模型

use Munettt\Userstamps\Userstamps;

class Book extends Model
{
    use Userstamps;

    //
}

当模型创建/更新时,注册事件并使用适当的 created_by / updated_by 用户 ID。