*/ public function ticket(): BelongsTo { return $this->belongsTo(Ticket::class, 'ticket_id'); } /** * Get the user who posted this reply. * * @return BelongsTo */ public function user(): BelongsTo { return $this->belongsTo(User::class, 'user_id'); } }