purchase_order = $purchase_order; } private function createBlankContact() { $new_contact = VendorContactFactory::create($this->purchase_order->company_id, $this->purchase_order->user_id); $new_contact->vendor_id = $this->purchase_order->vendor_id; $new_contact->contact_key = Str::random(40); $new_contact->is_primary = true; $new_contact->save(); } public function run() { $contacts = $this->purchase_order->vendor->contacts()->get(); if ($contacts->count() == 0) { $this->createBlankContact(); $this->purchase_order->refresh(); $contacts = $this->purchase_order->vendor->contacts; } $contacts->each(function ($contact) { $invitation = PurchaseOrderInvitation::where('company_id', $this->purchase_order->company_id) ->where('vendor_contact_id', $contact->id) ->where('purchase_order_id', $this->purchase_order->id) ->withTrashed() ->first(); if (! $invitation) { try { $ii = PurchaseOrderInvitationFactory::create($this->purchase_order->company_id, $this->purchase_order->user_id); $ii->key = $this->createDbHash($this->purchase_order->company->db); $ii->purchase_order_id = $this->purchase_order->id; $ii->vendor_contact_id = $contact->id; $ii->save(); } catch (\Exception $e) { nlog($e->getMessage()); } } elseif (! $contact->send_email) { $invitation->delete(); } }); if ($this->purchase_order->invitations()->count() == 0) { if ($contacts->count() == 0) { $contact = $this->createBlankContact(); } else { $contact = $contacts->first(); $invitation = PurchaseOrderInvitation::where('company_id', $this->purchase_order->company_id) ->where('vendor_contact_id', $contact->id) ->where('purchase_order_id', $this->purchase_order->id) ->withTrashed() ->first(); if ($invitation) { $invitation->restore(); return $this->purchase_order; } } $ii = PurchaseOrderInvitationFactory::create($this->purchase_order->company_id, $this->purchase_order->user_id); $ii->key = $this->createDbHash($this->purchase_order->company->db); $ii->purchase_order_id = $this->purchase_order->id; $ii->vendor_contact_id = $contact->id; $ii->save(); } return $this->purchase_order; } }