Askedio\ItemPaginator\ItemPaginator::toArray PHP Метод

toArray() публичный Метод

Get the instance as an array.
public toArray ( ) : array
Результат 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()];
    }