Files
BookStack/app/Users/Models/HasCreatorAndUpdater.php

36 lines
717 B
PHP
Raw Normal View History

2021-06-26 15:23:15 +00:00
<?php
2023-05-17 17:56:55 +01:00
namespace BookStack\Users\Models;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
2021-11-06 00:32:01 +00:00
* @property int $created_by
* @property int $updated_by
* @property ?User $createdBy
* @property ?User $updatedBy
*/
trait HasCreatorAndUpdater
{
/**
* Relation for the user that created this entity.
*/
public function createdBy(): BelongsTo
{
return $this->belongsTo(User::class, 'created_by');
}
/**
* Relation for the user that updated this entity.
*/
public function updatedBy(): BelongsTo
{
return $this->belongsTo(User::class, 'updated_by');
}
public function getOwnerFieldName(): string
{
return 'created_by';
}
}