*/ protected $fillable = [ 'account_id', 'name', ]; /** * Get the account associated with the contact information type. * * @return BelongsTo */ public function account() { return $this->belongsTo(Account::class); } }