瀏覽代碼

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'));
     }