lundi 2 novembre 2015

Laravel 5: Pagination links on raw query does not work

I have a raw query which is working properly but i am trying to paginate it as below

$query_result = DB::select($query);
$query_result = new Paginator($query_result, 5, 1);
return view('pages.printout', compact('query_result'));

And in blade

{!! str_replace('/?', '?', $query_result->render()) !!}

First page comes up okay, it paginates first 5 records but when i click to pagination links no change happens. Any help would be appreciated.



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire