Laravel 5.1 especificando a página atual para paginação

Estou trabalhando nisso há muito tempo, sem resultados. Eu tentei.

`\Illuminate\Pagination\Paginator::setCurrentPage($current_page);`

retornaCall to protected method Illuminate\Pagination\Paginator::setCurrentPage()

\Paginator::setCurrentPage($current_page);

retornaCall to protected method Illuminate\Pagination\Paginator::setCurrentPage()

\DB::getPaginator()->setCurrentPage($current_page);

retornacall_user_func_array() expects parameter 1 to be a valid callback, class 'Illuminate\Database\MySqlConnection' does not have a method 'getPaginator'

$tmp = new Post( ); $tmp->getConnection()->setCurrentPage($current_page);

retornacall_user_func_array() expects parameter 1 to be a valid callback, class 'Illuminate\Database\MySqlConnection' does not have a method 'getPaginator'

Como posso especificar a página? Eu preciso especificá-lo manualmente.

Eu esperava que fosse tão fácil quanto$model->find( )->paginate($per_page, $page)

questionAnswers(3)

yourAnswerToTheQuestion