generated from boboko/starter
12 lines
418 B
PHP
12 lines
418 B
PHP
@props(['paginator'])
|
||||
|
|
|
|||
|
|
{{-- "Showing 1–12 of 48 products" — takes any LengthAwarePaginator. Shared by
|
|||
|
|
the category listing and the search results page. --}}
|
|||
|
|
<p {{ $attributes }}>
|
|||
|
|
{{ trans_choice('storefront.shop.showing_results', $paginator->total(), [
|
|||
|
|
'first' => $paginator->firstItem() ?? 0,
|
|||
|
|
'last' => $paginator->lastItem() ?? 0,
|
|||
|
|
'total' => $paginator->total(),
|
|||
|
|
]) }}
|
|||
|
|
</p>
|