Laravel paginator in custom query

524 Views Asked by At

I am working on a project in laravel. I have sql queries as string in db. The queries are very important. There is no way to write them in laravel relationships because of some situation so

DB::select($table->query) I wanna paginate this with laravel paginate.

1

There are 1 best solutions below

7
On

Laravel Query Builder also implements the paginate() method:

DB::table($table->query)->paginate(15);

Check the documentation on this subject for further information.