Skip to content

Commit

Permalink
fix LengthAwarePaginator translations issue (#34710)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgilbertDG committed Oct 6, 2020
1 parent c7148b8 commit 54c7151
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Pagination/LengthAwarePaginator.php
Expand Up @@ -115,11 +115,11 @@ protected function linkCollection()
});
})->prepend([
'url' => $this->previousPageUrl(),
'label' => 'Previous',
'label' => __('pagination.previous'),
'active' => false,
])->push([
'url' => $this->nextPageUrl(),
'label' => 'Next',
'label' => __('pagination.next'),
'active' => false,
]);
}
Expand Down

0 comments on commit 54c7151

Please sign in to comment.