2019-01-28 09:13:12 +11:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2023-01-29 09:21:40 +11:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 13:32:07 +10:00
|
|
|
*/
|
2019-01-28 09:13:12 +11:00
|
|
|
|
|
|
|
|
namespace App\Factory;
|
|
|
|
|
|
|
|
|
|
use App\Models\ClientContact;
|
2020-10-28 21:10:49 +11:00
|
|
|
use Illuminate\Support\Str;
|
2019-01-28 09:13:12 +11:00
|
|
|
|
|
|
|
|
class ClientContactFactory
|
|
|
|
|
{
|
2019-12-31 08:59:12 +11:00
|
|
|
public static function create(int $company_id, int $user_id) :ClientContact
|
|
|
|
|
{
|
|
|
|
|
$client_contact = new ClientContact;
|
2020-09-06 19:38:10 +10:00
|
|
|
$client_contact->first_name = '';
|
2019-01-28 09:13:12 +11:00
|
|
|
$client_contact->user_id = $user_id;
|
|
|
|
|
$client_contact->company_id = $company_id;
|
2023-02-23 20:59:14 +11:00
|
|
|
$client_contact->contact_key = Str::random(32);
|
2019-01-28 09:13:12 +11:00
|
|
|
$client_contact->id = 0;
|
2021-10-16 10:01:44 +11:00
|
|
|
$client_contact->send_email = true;
|
2019-01-28 09:13:12 +11:00
|
|
|
|
2019-12-31 08:59:12 +11:00
|
|
|
return $client_contact;
|
|
|
|
|
}
|
2019-01-28 09:13:12 +11:00
|
|
|
}
|