Tenant::factory(), 'package_id' => Package::factory(), 'price' => $this->faker->randomFloat(2, 0, 500), 'purchased_at' => now(), 'expires_at' => now()->addYear(), 'used_events' => 0, 'active' => true, ]; } public function inactive(): self { return $this->state(fn () => ['active' => false]); } }