Enhances the liquid built-in last filter to work with Paginate objects.

When invoked on a Paginate object, it returns the last item from the current page.

Examples:

{% assign order = user.orders | last %}
{{ order.code }}
{% assign country = website.countries | last %}
{{ country.name }}

{% comment %}
Outputs:
ORD1-654321
Zimbabwe
{% endcomment %}