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?
You can create manual pagination like this
$data = DB::table('post')->skip(0)->take(20)->get();