fake()->company(), 'slug' => Str::slug(fake()->unique()->words(3, true)), 'owner_id' => User::factory(), ]; } public function free(): static { return $this->state(fn () => [ 'plan_id' => Plan::factory()->free()->create()->id, ]); } public function pro(): static { return $this->state(fn () => [ 'plan_id' => Plan::factory()->pro()->create()->id, 'subdomain_full' => null, ]); } }