mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
c503d58505
* Fixes for invitations not being created in RandomDataSeeder * Resend failed/quota exceeded emails * Queue email tests * Refund a client for a ninja account * Adjust email quotas - hosted plan
29 lines
942 B
PHP
29 lines
942 B
PHP
<?php
|
|
|
|
use Faker\Generator as Faker;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Model Factories
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This directory should contain each of the model factory definitions for
|
|
| your application. Factories provide a convenient way to generate new
|
|
| model instances for testing / seeding your application's database.
|
|
|
|
|
*/
|
|
|
|
$factory->define(App\Models\ClientContact::class, function (Faker $faker) {
|
|
return [
|
|
'first_name' => $faker->firstName,
|
|
'last_name' => $faker->lastName,
|
|
'phone' => $faker->phoneNumber,
|
|
'email_verified_at' => now(),
|
|
'email' => $faker->unique()->safeEmail,
|
|
'send_email' => true,
|
|
'password' => bcrypt('password'),
|
|
'remember_token' => \Illuminate\Support\Str::random(10),
|
|
'contact_key' => \Illuminate\Support\Str::random(40),
|
|
];
|
|
});
|