repo->paginateBatches($filters, $perPage); } public function getBatch(int $batchId): ?object { return $this->repo->findBatch($batchId); } public function paginateItems(int $batchId, array $filters, int $perPage = 50): LengthAwarePaginator { return $this->repo->paginateItems($batchId, $filters, $perPage); } }