2019-01-27 23:13:12 +01:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-01-27 23:13:12 +01:00
|
|
|
|
|
|
|
namespace App\Factory;
|
|
|
|
|
2019-02-17 11:34:46 +01:00
|
|
|
use App\DataMapper\ClientSettings;
|
2019-01-27 23:13:12 +01:00
|
|
|
use App\Models\Client;
|
2019-09-26 15:00:51 +02:00
|
|
|
use Illuminate\Support\Str;
|
2019-01-27 23:13:12 +01:00
|
|
|
|
|
|
|
class ClientFactory
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
public static function create(int $company_id, int $user_id) :Client
|
|
|
|
{
|
|
|
|
$client = new Client;
|
|
|
|
$client->company_id = $company_id;
|
|
|
|
$client->user_id = $user_id;
|
|
|
|
$client->name = '';
|
|
|
|
$client->website = '';
|
|
|
|
$client->private_notes = '';
|
2020-02-26 04:26:07 +01:00
|
|
|
$client->public_notes = '';
|
2019-12-30 22:59:12 +01:00
|
|
|
$client->balance = 0;
|
|
|
|
$client->paid_to_date = 0;
|
|
|
|
$client->country_id = 4;
|
|
|
|
$client->is_deleted = 0;
|
|
|
|
$client->client_hash = Str::random(40);
|
|
|
|
$client->settings = ClientSettings::defaults();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-07-28 10:28:29 +02:00
|
|
|
// $client_contact = ClientContactFactory::create($company_id, $user_id);
|
|
|
|
// $client->contacts->add($client_contact);
|
2019-01-27 23:13:12 +01:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
return $client;
|
|
|
|
}
|
2019-01-27 23:13:12 +01:00
|
|
|
}
|