2020-08-04 10:37:28 +02:00
|
|
|
<?php
|
2020-10-01 07:33:38 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-10-01 07:33:38 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
2020-10-01 12:49:47 +02:00
|
|
|
use App\Models\InvoiceInvitation;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
2020-08-04 10:37:28 +02:00
|
|
|
use Illuminate\Support\Str;
|
|
|
|
|
2020-10-01 12:49:47 +02:00
|
|
|
class InvoiceInvitationFactory extends Factory
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name of the factory's corresponding model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $model = InvoiceInvitation::class;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the model's default state.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function definition()
|
|
|
|
{
|
2020-11-25 15:19:52 +01:00
|
|
|
return [
|
|
|
|
'key' => Str::random(40),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|