Laravel pagination not working with group by clause

前端 未结 5 475
北荒
北荒 2020-12-19 04:36

It seems Laravel pagination deos not working properly with group by clause. For example:

            $users = Subject::select(DB::raw(\'subjects.*, count(user_sub         


        
5条回答
  •  清歌不尽
    2020-12-19 05:41

    Check the documentation https://laravel.com/docs/5.2/pagination

    Currently, pagination operations that use a groupBy statement cannot be executed efficiently by Laravel. If you need to use a groupBy with a paginated result set, it is recommended that you query the database and create a paginator manually.

提交回复
热议问题