countItem = $options['countItem']; $this->perPage = $options['perPage'] ?? 10; $this->currentPage = $options['currentPage'] ?? 1; $this->baseUrl = $options['baseUrl'] ?? ''; $this->baseUrl .= $options['prefix'] ?? '/page'; $this->countPages = ceil($this->countItem / $this->perPage); } public function create(): void { $prev = $this->currentPage - 1 >= 1 ? $this->currentPage - 1 : null; $next = $this->currentPage + 1 <= $this->countPages ? $this->currentPage + 1 : null; $btns = $prev ? "