Browse Source

Patients list paginate to 500 / page

Vijayakrishnan 4 years ago
parent
commit
f2d34bc3b2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Controllers/HomeController.php

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

@@ -335,7 +335,7 @@ class HomeController extends Controller
             default:
                 break;
         }
-        $patients = $query->orderBy('created_at', 'asc')->orderBy('name_last', 'asc')->orderBy('name_first', 'asc')->paginate();
+        $patients = $query->orderBy('created_at', 'asc')->orderBy('name_last', 'asc')->orderBy('name_first', 'asc')->paginate(500);
         return view('app/patients', compact('patients', 'filter'));
     }