Devise\Search\Pagination::toArray PHP Method

toArray() public method

Turns this paginated object into an array
public toArray ( ) : array
return array
    public function toArray()
    {
        return ['items' => $this->items, 'total' => $this->total, 'page' => $this->page, 'perPage' => $this->perPage, 'totalPageCount' => ceil($this->total / $this->perPage), 'appends' => $this->appendsToLink];
    }