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