distinct() with pagination() in laravel 5.2 not working
问题 I'm trying to use distinct() with pagination() in laravel 5.2 with fluent and it's given result proper but pagination remain same(Like without apply distinct). I have already reviewed and tested below answers with mine code - laravel 5 - paginate total() of a query with distinct - Paginate & Distinct - Query Builder paginate method count number wrong when using distinct My code is something like: DB::table('myTable1 AS T1') ->select('T1.*') ->join('myTable2 AS T2','T2.T1_id','=','T1.id') -