$this->faker->name, 'email' => $this->faker->unique()->safeEmail, 'secret' => mksecret(), 'editsecret' => "", 'passhash' => $passhash, 'stylesheet' => self::$defaultStyleSheet, 'added' => now()->toDateTimeString(), 'status' => User::STATUS_CONFIRMED, 'class' => random_int(intval(User::CLASS_USER), intval(User::CLASS_SYSOP)) ]; } /** * Indicate that the model's email address should be unverified. * * @return \Illuminate\Database\Eloquent\Factories\Factory */ // public function unverified() // { // return $this->state(function (array $attributes) { // return [ // 'email_verified_at' => null, // ]; // }); // } }