ihor1976's avatar

pagination from the last page

Good day. I have a large list of buyers, I have provided pagination for this, but I need pagination to start from the last page, how to do this ??, Thanks in advance for your answers and good luck in all your projects))

0 likes
5 replies
ihor1976's avatar

Yes, there is such an option, but it is not quite suitable. It is necessary to make sure that when the page is opened, the pagination to the last one is triggered.

Snapey's avatar

$results = $model->paginate()

if(!$request->has('page') {

	return redirect( request()->url() . '&page=' . $results->lastPage());

}
1 like
ihor1976's avatar

Super, you are a genius)) Thank you very much)) I owe you))

ihor1976's avatar

Super, you are a genius)) Thank you very much)) I owe you))

Please or to participate in this conversation.