1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 23:22:52 +01:00
invoiceninja/database/factories/AccountFactory.php

13 lines
259 B
PHP
Raw Normal View History

<?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),
2020-06-08 23:55:31 +02:00
'report_errors' => 1,
];
});