> */ public function toArray(Request $request): array { return [ 'id' => $this->resource->id, 'name' => $this->resource->name, 'revoked' => $this->resource->revoked, 'scopes' => $this->resource->scopes, 'created_at' => $this->formatDateTime($this->resource->created_at), 'expires_at' => $this->formatDateTime($this->resource->expires_at), ]; } }