mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
11 lines
202 B
PHP
11 lines
202 B
PHP
|
<?php
|
||
|
|
||
|
use Faker\Generator as Faker;
|
||
|
use Illuminate\Support\Str;
|
||
|
|
||
|
$factory->define(App\Models\QuoteInvitation::class, function (Faker $faker) {
|
||
|
return [
|
||
|
'key' => Str::random(40),
|
||
|
];
|
||
|
});
|