1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/database/factories/AccountFactory.php
2020-06-09 07:55:31 +10:00

13 lines
259 B
PHP

<?php
use Faker\Generator as Faker;
use Illuminate\Support\Str;
$factory->define(App\Models\Account::class, function (Faker $faker) {
return [
'default_company_id' => 1,
'key' => Str::random(32),
'report_errors' => 1,
];
});