2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Traits;
|
2015-12-09 14:50:17 -05:00
|
|
|
|
2018-09-25 07:30:50 -04:00
|
|
|
use BookStack\Auth\User;
|
2020-12-30 13:25:35 -05:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
2018-09-25 07:30:50 -04:00
|
|
|
|
2020-05-01 18:24:11 -04:00
|
|
|
/**
|
2021-11-05 20:32:01 -04:00
|
|
|
* @property int $created_by
|
|
|
|
* @property int $updated_by
|
2020-05-01 18:24:11 -04:00
|
|
|
*/
|
2020-12-30 13:25:35 -05:00
|
|
|
trait HasCreatorAndUpdater
|
2015-12-09 14:50:17 -05:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Relation for the user that created this entity.
|
|
|
|
*/
|
2020-12-30 13:25:35 -05:00
|
|
|
public function createdBy(): BelongsTo
|
2015-12-09 14:50:17 -05:00
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
return $this->belongsTo(User::class, 'created_by');
|
2015-12-09 14:50:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Relation for the user that updated this entity.
|
|
|
|
*/
|
2020-12-30 13:25:35 -05:00
|
|
|
public function updatedBy(): BelongsTo
|
2015-12-09 14:50:17 -05:00
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
return $this->belongsTo(User::class, 'updated_by');
|
2015-12-09 14:50:17 -05:00
|
|
|
}
|
2018-01-28 11:58:52 -05:00
|
|
|
}
|