From 9be33bfdf78c63c5be31822cdc920f6b985aad4b Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 24 Aug 2021 15:58:43 +1000 Subject: [PATCH] Fixes for quote services --- app/Services/Quote/CreateInvitations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/Quote/CreateInvitations.php b/app/Services/Quote/CreateInvitations.php index c1092b10ea5d..b2e42395e088 100644 --- a/app/Services/Quote/CreateInvitations.php +++ b/app/Services/Quote/CreateInvitations.php @@ -60,7 +60,7 @@ class CreateInvitations private function createBlankContact() { - $new_contact = ClientContacstFactory::create($this->quote->company_id, $this->quote->user_id); + $new_contact = ClientContactFactory::create($this->quote->company_id, $this->quote->user_id); $new_contact->client_id = $this->quote->client_id; $new_contact->contact_key = Str::random(40); $new_contact->is_primary = true;