belongsTo(Account::class); } /** * Get the contact record associated with the gift. * * @return BelongsTo */ public function contact() { return $this->belongsTo(Contact::class); } /** * Get the contact record associated with the gift. * * @return BelongsTo */ public function contactFieldType() { return $this->belongsTo(ContactFieldType::class); } /** * Get the data field of the contact field. * * @return string */ public function getDataAttribute($value) { return $value; } }