belongsTo(Account::class); } /** * Get the contact record associated with the conversation. * * @return BelongsTo */ public function contact() { return $this->belongsTo(Contact::class); } /** * Get the contact field type record associated with the conversation. * * @return BelongsTo */ public function contactFieldType() { return $this->belongsTo(ContactFieldType::class); } /** * Get the Message records associated with the conversation. * * @return HasMany */ public function messages() { return $this->hasMany(Message::class); } }