BookStackApp_BookStack/app/Users/Models/HasOwner.php
2023-05-17 17:56:55 +01:00

20 lines
330 B
PHP

<?php
namespace BookStack\Users\Models;
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');
}
}