There was an error while loading. Please reload this page.
1 parent 80bf5c2 commit d3d359aCopy full SHA for d3d359a
resources/views/bs4/pagination.blade.php
@@ -0,0 +1,11 @@
1
+<nav aria-label="Page navigation">
2
+ <ul class="pagination {{ $class or '' }}">
3
+ @isset($pagination)
4
+ @foreach($pagination as $label => $link)
5
+ <li class="page-item"><a class="page-link" href="{{ $link }}">{!! $label !!}</a></li>
6
+ @endforeach
7
+ @else
8
+ {{ $slot }}
9
+ @endisset
10
+ </ul>
11
+</nav>
0 commit comments