logicpowerhouse 4 years ago
parent
commit
6178121563
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/Http/Controllers/PracticeManagementController.php

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

@@ -435,13 +435,13 @@ class PracticeManagementController extends Controller
             where('has_hcp_been_paid', false)->
             where('has_hcp_been_paid', false)->
             where('is_cancelled', false)->
             where('is_cancelled', false)->
             where('is_signed_by_hcp', true)->
             where('is_signed_by_hcp', true)->
-            orderBy('effective_date', 'desc')->paginate();
+            orderBy('effective_date', 'desc')->paginate(30);
         } else {
         } else {
             $bills = Bill::where('has_hcp_been_paid', false)->
             $bills = Bill::where('has_hcp_been_paid', false)->
             where('is_cancelled', false)->
             where('is_cancelled', false)->
             where('is_signed_by_hcp', true)->
             where('is_signed_by_hcp', true)->
             orderBy('effective_date', 'desc')->
             orderBy('effective_date', 'desc')->
-            paginate();
+            paginate(30);
         }
         }
         $viewData = [
         $viewData = [
             'bills' => $bills,
             'bills' => $bills,