2018-10-22 14:04:37 +02:00
|
|
|
<?php
|
2020-10-01 07:33:38 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-10-01 07:33:38 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
namespace Database\Factories;
|
2018-10-22 14:04:37 +02:00
|
|
|
|
2020-10-01 07:36:42 +02:00
|
|
|
use App\Models\Account;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
2020-03-29 14:22:14 +02:00
|
|
|
use Illuminate\Support\Str;
|
2018-10-22 14:04:37 +02:00
|
|
|
|
2020-10-01 07:36:42 +02:00
|
|
|
class AccountFactory extends Factory
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name of the factory's corresponding model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $model = Account::class;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the model's default state.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function definition()
|
|
|
|
{
|
2020-11-25 15:19:52 +01:00
|
|
|
return [
|
|
|
|
'default_company_id' => 1,
|
|
|
|
'key' => Str::random(32),
|
|
|
|
'report_errors' => 1,
|
|
|
|
];
|
2020-10-01 07:36:42 +02:00
|
|
|
}
|
|
|
|
}
|