Level 52
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.