mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
19 lines
347 B
PHP
19 lines
347 B
PHP
|
<?php namespace BookStack\Traits;
|
||
|
|
||
|
use BookStack\Auth\User;
|
||
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||
|
|
||
|
/**
|
||
|
* @property int owned_by
|
||
|
*/
|
||
|
trait HasOwner
|
||
|
{
|
||
|
/**
|
||
|
* Relation for the user that owns this entity.
|
||
|
*/
|
||
|
public function ownedBy(): BelongsTo
|
||
|
{
|
||
|
return $this->belongsTo(User::class, 'owned_by');
|
||
|
}
|
||
|
}
|