belongsTo(Ticket::class); } /** * Get the user that wrote the reply. */ public function user() { return $this->belongsTo(User::class); } public function attachments() { return $this->hasMany(TicketAttachment::class); } }