3 namespace BookStack\Traits;
5 use BookStack\Auth\User;
6 use Illuminate\Database\Eloquent\Relations\BelongsTo;
9 * @property int $owned_by
14 * Relation for the user that owns this entity.
16 public function ownedBy(): BelongsTo
18 return $this->belongsTo(User::class, 'owned_by');