Forráskód Böngészése

fixed notes ordering

= 4 éve
szülő
commit
c4207dabdd
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      app/Http/Controllers/PracticeManagementController.php

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

@@ -372,7 +372,7 @@ class PracticeManagementController extends Controller
 
     public function billingManager(Request $request, $proUid = null)
     {
-        $notes = Note::orderBy('created_at', 'desc')->paginate();
+        $notes = Note::orderBy('effective_dateest', 'desc')->paginate();
         return view('app.practice-management.billing-manager', compact('notes'));
     }