2018-10-22 23:04:37 +11:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Faker\Generator as Faker;
|
2020-03-29 23:22:14 +11:00
|
|
|
use Illuminate\Support\Str;
|
2018-10-22 23:04:37 +11:00
|
|
|
|
|
|
|
|
$factory->define(App\Models\Account::class, function (Faker $faker) {
|
|
|
|
|
return [
|
2020-03-29 23:22:14 +11:00
|
|
|
'default_company_id' => 1,
|
|
|
|
|
'key' => Str::random(32),
|
2020-06-09 07:55:31 +10:00
|
|
|
'report_errors' => 1,
|
2018-10-22 23:04:37 +11:00
|
|
|
];
|
|
|
|
|
});
|