So you are using simplePaginate instead of paginate() on your results. And did you removed your lang/en/pagination.php file ?
Mar 31, 2022
4
Level 1
laravel pagination not displaying correctly
I was working on listing my post so after the foreach I tried to get the pagination link and the links are been displayed like this
pagination.previous. & pagination.next
Level 73
@kikter if it is displaying a string like this pagination.previous that means that you are missing the translation files as I mentioned above. You can publish the views and customize them if you want: https://laravel.com/docs/9.x/pagination#customizing-the-pagination-view
php artisan vendor:publish --tag=laravel-pagination
Please or to participate in this conversation.