3 namespace BookStack\Users\Models;
5 use Illuminate\Database\Eloquent\Relations\BelongsTo;
8 * @property int $owned_by
13 * Relation for the user that owns this entity.
15 public function ownedBy(): BelongsTo
17 return $this->belongsTo(User::class, 'owned_by');