Pagination::make() method doesn\'t exist in Pagination class anymore in Laravel 5.
Pagination::make()
Is there a workaround to make manual pagination work in Laravel 5?
Another way of using pagination would be like this:
public function index() { $posts = DB::table('posts')->paginate(15); }