Askedio\ItemPaginator\ItemPaginator::toArray PHP Method

toArray() public method

Get the instance as an array.
public toArray ( ) : array
return array
    public function toArray()
    {
        return ['limit' => $this->perPage(), 'current_page' => $this->currentPage(), 'next_page_url' => $this->nextPageUrl(), 'from' => $this->firstItem(), 'to' => $this->lastItem(), 'data' => $this->items->toArray()];
    }