2021-06-26 17:23:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Traits;
|
2020-12-30 19:25:35 +01:00
|
|
|
|
|
|
|
use BookStack\Auth\User;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
|
|
|
|
/**
|
2021-11-06 01:32:01 +01:00
|
|
|
* @property int $owned_by
|
2020-12-30 19:25:35 +01:00
|
|
|
*/
|
|
|
|
trait HasOwner
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Relation for the user that owns this entity.
|
|
|
|
*/
|
|
|
|
public function ownedBy(): BelongsTo
|
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class, 'owned_by');
|
|
|
|
}
|
|
|
|
}
|