*/ class UserAchievementProgressFactory extends Factory { /** * 定义模型的默认测试状态。 * * @return array */ public function definition(): array { return [ 'user_id' => User::factory(), 'achievement_key' => 'chat_first_message', 'progress_value' => 0, 'threshold_value' => 1, 'last_scanned_at' => now(), ]; } }