mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
36 lines
1011 B
PHP
36 lines
1011 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace Database\Factories;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class UserFactory extends Factory
|
|
{
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function definition()
|
|
{
|
|
return [
|
|
'first_name' => $this->faker->name(),
|
|
'last_name' => $this->faker->name(),
|
|
'phone' => $this->faker->phoneNumber(),
|
|
'email' => config('ninja.testvars.username'),
|
|
'email_verified_at' => now(),
|
|
'password' => bcrypt(config('ninja.testvars.password')), // secret
|
|
'remember_token' => \Illuminate\Support\Str::random(10),
|
|
];
|
|
}
|
|
}
|