Browse Source

changed page size to 50

= 3 years ago
parent
commit
12e495377b
1 changed files with 1 additions and 1 deletions
  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');