소스 검색

changed page size to 50

= 3 년 전
부모
커밋
12e495377b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Http/Controllers/PracticeManagementController.php

+ 1 - 1
app/Http/Controllers/PracticeManagementController.php

@@ -200,7 +200,7 @@ SELECT effective_date, count(*), sum(number_of_units) as units FROM bill WHERE c
         }
        
 
-        $rows = $rows->paginate(20);
+        $rows = $rows->paginate(50);
 
         $claimStatuses = DB::select('SELECT distinct status FROM claim ORDER BY status DESC');