*/ protected $fillable = [ 'content', 'author_id', 'offer_id', ]; public function offer(): BelongsTo { return $this->belongsTo(Offer::class); } public function author(): BelongsTo { return $this->belongsTo(User::class, 'author_id', 'id'); } }