Skip to content

Commit 95e94b3

Browse files
committed
Merge branch 'develop'
2 parents 3600248 + cd0a849 commit 95e94b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/includes/_pagination.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</div>
66

77
<div class="col text-right text-muted">
8-
{{ __('Showing :first to :last out of :total results', ['first' => $models->firstItem(), 'last' => $models->lastItem(), 'total' => $models->total()]) }}
8+
{{ __('Showing :first to :last out of :total results', ['first' => $models->count() ? $models->firstItem() : 0, 'last' => $models->count() ? $models->lastItem() : 0, 'total' => $models->total()]) }}
99
</div>
1010
</div>
1111
@endif

0 commit comments

Comments
 (0)