belongsTo(Account::class); } /** * Get the contact records associated with the gift. * * @return BelongsTo */ public function contacts() { return $this->hasMany(Contact::class); } /** * Get the name of the gender. * * @param string $value * @return string */ public function getNameAttribute($value) { return $value; } }