*/ class UserFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition() { return [ 'name' => $this->faker->name(), 'lastname' => $this->faker->lastname(), 'email' => $this->faker->unique()->safeEmail(), 'password' => $this, // password ]; } /** * Indicate that the model's email address should be unverified. * * @return static */ public function unverified() { return $this->state(function (array $attributes) { return [ 'email_verified_at' => null, ]; }); } }