We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi
when using auto_links I can see it outputs this
auto_links
Showing 21 to 30 of 74 results
The blade template for this is:
{!! __('Showing') !!} @if ($paginator->firstItem()) <span class="font-medium">{{ $paginator->firstItem() }}</span> {!! __('to') !!} <span class="font-medium">{{ $paginator->lastItem() }}</span> @else {{ $paginator->count() }} @endif {!! __('of') !!} <span class="font-medium">{{ $paginator->total() }}</span> {!! __('results') !!}
I'd like to recreate this in Antlers. but there doesn't appear to be an equivalent to {{ $paginator->firstItem() }} and {{ $paginator->lastItem() }}
{{ $paginator->firstItem() }}
{{ $paginator->lastItem() }}
{{ total_items }} outputs the same as {{ $paginator->total() }}
{{ total_items }}
{{ $paginator->total() }}
Can this be added to a future release?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi
when using
auto_links
I can see it outputs thisThe blade template for this is:
I'd like to recreate this in Antlers. but there doesn't appear to be an equivalent to
{{ $paginator->firstItem() }}
and{{ $paginator->lastItem() }}
{{ total_items }}
outputs the same as{{ $paginator->total() }}
Can this be added to a future release?
The text was updated successfully, but these errors were encountered: