mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
22 lines
494 B
PHP
22 lines
494 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
namespace Database\Factories;
|
|
|
|
|
|
use Faker\Generator as Faker;
|
|
use Illuminate\Support\Str;
|
|
|
|
$factory->define(App\Models\QuoteInvitation::class, function (Faker $faker) {
|
|
return [
|
|
'key' => Str::random(40),
|
|
];
|
|
});
|