public function packages(Organization $organization, Request $request): JsonResponse
    {
        return $this->json(
            new Packages(...$this->paginate(
                fn ($perPage, $offset) => $this->packageQuery->findAll($organization->id(), $perPage, $offset),