Your IP : 216.73.216.79


Current Path : /var/www/html/bookstack/app/Traits/
Upload File :
Current File : /var/www/html/bookstack/app/Traits/HasOwner.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');
    }
}