Tenant::factory(), 'type' => 'per_student', 'seats' => 30, 'expires_at' => now()->addYear(), 'active' => true, ]; } public function active(): static { return $this->state([ 'active' => true, 'expires_at' => now()->addYear(), ]); } public function expired(): static { return $this->state([ 'active' => true, 'expires_at' => now()->subDay(), ]); } public function inactive(): static { return $this->state(['active' => false]); } }