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