Skip to content

Commit eeb2f79

Browse files
committed
Merge branch 'DeltaSystems-master' into develop
2 parents f42910d + a4e9c14 commit eeb2f79

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

resources/views/bootstrap-4/includes/pagination.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@if ($showPagination)
2-
@if ($paginationEnabled && $showPerPage && $rows->lastPage() > 1)
2+
@if ($paginationEnabled && $rows->lastPage() > 1)
33
<div class="row">
44
<div class="col-12 col-md-6">
55
{{ $rows->links() }}

resources/views/bootstrap-5/includes/pagination.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@if ($showPagination)
2-
@if ($paginationEnabled && $showPerPage && $rows->lastPage() > 1)
2+
@if ($paginationEnabled && $rows->lastPage() > 1)
33
<div class="row">
44
<div class="col-12 col-md-6">
55
{{ $rows->links() }}

resources/views/tailwind/includes/pagination.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@if ($showPagination)
22
<div class="p-6 md:p-0">
3-
@if ($paginationEnabled && $showPerPage && $rows->lastPage() > 1)
3+
@if ($paginationEnabled && $rows->lastPage() > 1)
44
{{ $rows->links() }}
55
@else
66
<p class="text-sm text-gray-700 leading-5">

0 commit comments

Comments
 (0)