faker->url(); return [ 'tenant_id' => Tenant::factory(), 'event_id' => Event::factory(), 'guest_identifier' => Str::slug($this->faker->firstName()), 'device_id' => (string) Str::uuid(), 'endpoint' => $endpoint, 'endpoint_hash' => hash('sha256', $endpoint), 'public_key' => base64_encode(random_bytes(32)), 'auth_token' => base64_encode(random_bytes(16)), 'content_encoding' => 'aes128gcm', 'status' => 'active', 'language' => 'de', 'user_agent' => 'Mozilla/5.0', ]; } public function revoked(): static { return $this->state([ 'status' => 'revoked', ]); } }