*/ class UserFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'username' => $this->faker->name, 'enabled' => true, 'confirmed' => 1 ]; } }