rodrigo.pedra11 years ago Best Answer Level 56ReplyReport SpamThose strings are used when you opt for the simple pagination: // example from the docs $someUsers = User::where('votes', '>', 100)->simplePaginate(15); take a look at: [ http://laravel.com/docs/5.0/pagination ]. If you opt for the ->paginate() method, those strings are not going to be used. Like Reply 1 like
jmfs OP 11 years agoLevel 6ReplyReport SpamSo i'd have to make a custom paginator just to change the arrow style for the normal paginator? Like Reply 1 like
rodrigo.pedra11 years agoLevel 56ReplyReport SpamProbably, actually you can write a custom Presenter for pagination. Take a look at this answer in SO [ http://stackoverflow.com/a/28542607/1211472 ] (last answer) Like Reply
johnpatel7 years agoLevel 1ReplyReport SpamHere is step by step guide of php pagination with search filter. https://www.johnpatel.com/pagination-in-php-function-search-filter/ Like Reply