{{--
{{ print_r($pagination, 1) }}
--}} @if (isset($pagination['current_page']) && $pagination['current_page'] > 0)
@if($pagination['current_page'] == 1) @else {{ __('Первый') }} @endif @php $count = count($pagination['links']) - 1; @endphp @for($i = 1; $i < $count; $i++) @php $link = $pagination['links'][$i]; @endphp @if ($link['label'] == '...') @else {{ $link['label'] }} @endif @endfor @if($pagination['current_page'] == $pagination['last_page']) @else {{ __('Последний') }} @endif

Показываем результаты с {{ $pagination['from'] }} по {{ $pagination['to'] }} от общего количества {{ $pagination['total'] }}

@endif {{-- Showing 1 to 25 of 77 results --}} {{-- [current_page] => 2 [data] => [first_page_url] => http://localhost/products?page=1 [from] => 26 [last_page] => 4 [last_page_url] => http://localhost/products?page=4 [links] => Array ( [2] => Array ( [url] => http://localhost/products?page=2 [label] => 2 [active] => 1 ) ... ) [next_page_url] => http://localhost/products?page=3 [path] => http://localhost/products [per_page] => 25 [prev_page_url] => http://localhost/products?page=1 [to] => 50 [total] --}}