1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/database/factories/InvoiceInvitationFactory.php
2020-08-04 18:37:28 +10:00

11 lines
204 B
PHP

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