*/ protected $fillable = [ 'asset_id', 'creator_id', 'content' ]; /** * The asset associated with this comment. */ public function asset() { return $this->belongsTo(Asset::class, 'asset_id'); } /** * The user associated with this comment. */ public function user() { return $this->belongsTo(User::class, 'creator_id'); } }