1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/database/factories/UserFactory.php

43 lines
1.1 KiB
PHP
Raw Normal View History

2018-10-04 19:10:43 +02:00
<?php
2020-10-01 07:33:38 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @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\User;
use Illuminate\Database\Eloquent\Factories\Factory;
2018-10-04 19:10:43 +02:00
2020-10-01 12:49:47 +02:00
class UserFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = User::class;
2018-10-04 19:10:43 +02:00
2020-10-01 12:49:47 +02:00
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
2020-11-25 15:19:52 +01:00
{
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),
];
}
2020-10-01 12:49:47 +02:00
}