> */ public function toArray(Request $request): array { return [ /** @var string $id ID of membership */ 'id' => $this->resource->id, 'organization' => [ /** @var string $id ID of organization */ 'id' => $this->resource->organization->id, /** @var string $name Name of organization */ 'name' => $this->resource->organization->name, ], /** @var string $role Role */ 'role' => $this->resource->role, ]; } }