소스 검색

Bill matrix order by (legacy)

Vijayakrishnan 4 년 전
부모
커밋
73984b9ad0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Http/Controllers/PracticeManagementController.php

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

@@ -531,7 +531,7 @@ class PracticeManagementController extends Controller
         $filters['verified'] = $request->input('verified');
         $filters['cancelled'] = $request->input('cancelled');
 
-        $bills = Bill::paginate();
+        $bills = Bill::orderBy('effective_date')->paginate();
         return view('app.practice-management.bill-matrix', compact('bills', 'bClients', 'bHCPPros', 'filters'));
     }