*/ class UserFactory extends Factory { /** * The current password being used by the factory. */ protected static ?string $password; /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => fake()->name(), 'email' => fake()->unique()->safeEmail(), 'currency_code' => 'USD', 'email_verified_at' => now(), 'password' => static::$password ??= 'password', 'remember_token' => Str::random(10), 'two_factor_secret' => Str::random(10), 'two_factor_recovery_codes' => Str::random(10), 'two_factor_confirmed_at' => now(), ]; } /** * Indicate that the model's email address should be unverified. */ public function unverified(): static { return $this->state(fn (array $attributes) => [ 'email_verified_at' => null, ]); } /** * Indicate that the model does not have two-factor authentication configured. */ public function withoutTwoFactor(): static { return $this->state(fn (array $attributes) => [ 'two_factor_secret' => null, 'two_factor_recovery_codes' => null, 'two_factor_confirmed_at' => null, ]); } /** * Indicate that the user has completed onboarding. */ public function onboarded(): static { return $this->state(fn (array $attributes) => [ 'onboarded_at' => now(), 'encryption_salt' => 'test-salt', 'locale' => 'en', ]); } /** * Indicate that the user has not completed onboarding. */ public function notOnboarded(): static { return $this->state(fn (array $attributes) => [ 'onboarded_at' => null, ]); } }