Askedio\ItemPaginator\ItemPaginator::lastItem PHP Method

lastItem() public method

Get the number of the last item in the slice.
public lastItem ( ) : integer
return integer
    public function lastItem()
    {
        if (count($this->items) === 0) {
            return;
        }
        return $this->items[count($this->items) - 1][$this->getField()];
    }