@if ($showPagination)
@if ($paginationEnabled && $rows->lastPage() > 1)
{{ $rows->links() }}
@lang('Showing')
{{ $rows->count() ? $rows->firstItem() : 0 }}
@lang('to')
{{ $rows->count() ? $rows->lastItem() : 0 }}
@lang('of')
{{ $rows->total() }}
@lang('results')
@else
@lang('Showing')
{{ $rows->count() }}
@lang('results')
@endif
@endif