|
12 | 12 | {{-- Previous Page Link --}} |
13 | 13 | @if ($paginator->onFirstPage()) |
14 | 14 | <li class="page-item disabled" aria-disabled="true"> |
15 | | - <span class="page-link">@lang('pagination.previous')</span> |
| 15 | + <span class="page-link">‹</span> |
16 | 16 | </li> |
17 | 17 | @else |
18 | 18 | @if(method_exists($paginator,'getCursorName')) |
19 | 19 | <li class="page-item"> |
20 | | - <button dusk="previousPage" type="button" class="page-link" wire:click="setPage('{{$paginator->previousCursor()->encode()}}','{{ $paginator->getCursorName() }}')" wire:loading.attr="disabled" rel="prev">@lang('pagination.previous')</button> |
| 20 | + <button dusk="previousPage" type="button" class="page-link" wire:click="setPage('{{$paginator->previousCursor()->encode()}}','{{ $paginator->getCursorName() }}')" wire:loading.attr="disabled" rel="prev">‹</button> |
21 | 21 | </li> |
22 | 22 | @else |
23 | 23 | <li class="page-item"> |
24 | | - <button type="button" dusk="previousPage{{ $paginator->getPageName() == 'page' ? '' : '.' . $paginator->getPageName() }}" class="page-link" wire:click="previousPage('{{ $paginator->getPageName() }}')" wire:loading.attr="disabled" rel="prev">@lang('pagination.previous')</button> |
| 24 | + <button type="button" dusk="previousPage{{ $paginator->getPageName() == 'page' ? '' : '.' . $paginator->getPageName() }}" class="page-link" wire:click="previousPage('{{ $paginator->getPageName() }}')" wire:loading.attr="disabled" rel="prev">‹</button> |
25 | 25 | </li> |
26 | 26 | @endif |
27 | 27 | @endif |
|
30 | 30 | @if ($paginator->hasMorePages()) |
31 | 31 | @if(method_exists($paginator,'getCursorName')) |
32 | 32 | <li class="page-item"> |
33 | | - <button dusk="nextPage" type="button" class="page-link" wire:click="setPage('{{$paginator->nextCursor()->encode()}}','{{ $paginator->getCursorName() }}')" wire:loading.attr="disabled" rel="next">@lang('pagination.next')</button> |
| 33 | + <button dusk="nextPage" type="button" class="page-link" wire:click="setPage('{{$paginator->nextCursor()->encode()}}','{{ $paginator->getCursorName() }}')" wire:loading.attr="disabled" rel="next">›</button> |
34 | 34 | </li> |
35 | 35 | @else |
36 | 36 | <li class="page-item"> |
37 | | - <button type="button" dusk="nextPage{{ $paginator->getPageName() == 'page' ? '' : '.' . $paginator->getPageName() }}" class="page-link" wire:click="nextPage('{{ $paginator->getPageName() }}')" wire:loading.attr="disabled" rel="next">@lang('pagination.next')</button> |
| 37 | + <button type="button" dusk="nextPage{{ $paginator->getPageName() == 'page' ? '' : '.' . $paginator->getPageName() }}" class="page-link" wire:click="nextPage('{{ $paginator->getPageName() }}')" wire:loading.attr="disabled" rel="next">›</button> |
38 | 38 | </li> |
39 | 39 | @endif |
40 | 40 | @else |
41 | 41 | <li class="page-item disabled" aria-disabled="true"> |
42 | | - <span class="page-link">@lang('pagination.next')</span> |
| 42 | + <span class="page-link">›</span> |
43 | 43 | </li> |
44 | 44 | @endif |
45 | 45 | </ul> |
|
0 commit comments