Dec 4, 2015
0
Level 2
Decreasing Length of Pagination
I want to make pagination like laracasts.com. if i have 100 records then if i display 10 records per page than i want to show pagination links like this1, 2,3....7,8,9 ..next button and son on.
pubic function getRecords()
{
$records = \DB::table('cases)->paginate(10);
}
in view
{!!str_replace('/?','?',$records->render())!!}
This give pagination like this1,2,3,4,5,6,7,8,9,10 etc.but i want like this
1,2,3...7,8,9so on.How can i make like this pagination
Please or to participate in this conversation.