keche's avatar

Simple pagination help

I'm new to laravel and I i need help.I just need someone to explain me simple pagination in laravel 5.How to get prev and next link and how to set up my controller.

0 likes
1 reply
bestmomo's avatar

First you need a simple paginated collection :

$items = Item::where('something', $value)->simplePaginate(10);

Next you must send this to a view :

view('my_view', compact('items'));

Next you use items in view for links :

{!! $items->render() !!}

So you get pagination buttons.

Please or to participate in this conversation.