diff --git a/app/Factory/PurchaseOrderInvitationFactory.php b/app/Factory/PurchaseOrderInvitationFactory.php new file mode 100644 index 000000000000..ee3987ea7e39 --- /dev/null +++ b/app/Factory/PurchaseOrderInvitationFactory.php @@ -0,0 +1,31 @@ +company_id = $company_id; + $ci->user_id = $user_id; + $ci->vendor_contact_id = null; + $ci->purchase_order_id = null; + $ci->key = Str::random(config('ninja.key_length')); + $ci->transaction_reference = null; + $ci->message_id = null; + $ci->email_error = ''; + $ci->signature_base64 = ''; + $ci->signature_date = null; + $ci->sent_date = null; + $ci->viewed_date = null; + $ci->opened_date = null; + + return $ci; + } +}