*/ class EinundzwanzigPlebFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'pubkey' => $this->faker->sha256(), 'npub' => $this->faker->word(), 'email' => $this->faker->safeEmail(), 'association_status' => \App\Enums\AssociationStatus::DEFAULT, ]; } }