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.
Laravel Query Builder also implements the
paginate()
method:Check the documentation on this subject for further information.