Sfoglia il codice sorgente

updated lazy loading on note

= 1 anno fa
parent
commit
e45f94d831
1 ha cambiato i file con 27 aggiunte e 27 eliminazioni
  1. 27 27
      app/Http/Controllers/NoteController.php

+ 27 - 27
app/Http/Controllers/NoteController.php

@@ -29,33 +29,33 @@ class NoteController extends Controller
     public function dashboard(Request $request, Client $patient,  $noteUid)
     {
         $note = Note::with(
-            'client',
-            'hcpPro',
-            'hcpCompanyPro',
-            'noteTemplate',
-            'createdSession',
-            'allyPro',
-            'followUpAppointment',
-            'cmSetupClaim',
-            'naGenericBill',
-            'bills',
-            'addendums',
-            'sections',
-            //'segments',
-            'segmentsLeft',
-            'segmentsRight',
-            'coreSegment',
-            'reasonsLog',
-            'claims',
-            'receivedPayments',
-            'hcpCompany',
-            'hcpCompanyProPayer',
-            'hcpCompanyLocation',
-            'flaggedForSupervisingPhysicianReviewBySession',
-            'stampedBySupervisingPhysicianBySession',
-            'currentNotePickupForProcessing',
-            'visitTemplate',
-            'cmSetupManagerSignatureStatusUpdatedBySession'
+            'client'
+//            'hcpPro',
+//            'hcpCompanyPro',
+//            'noteTemplate',
+//            'createdSession',
+//            'allyPro',
+//            'followUpAppointment',
+//            'cmSetupClaim',
+//            'naGenericBill',
+//            'bills',
+//            'addendums',
+//            'sections',
+//            //'segments',
+//            'segmentsLeft',
+//            'segmentsRight',
+//            'coreSegment',
+//            'reasonsLog',
+//            'claims',
+//            'receivedPayments',
+//            'hcpCompany',
+//            'hcpCompanyProPayer',
+//            'hcpCompanyLocation',
+//            'flaggedForSupervisingPhysicianReviewBySession',
+//            'stampedBySupervisingPhysicianBySession',
+//            'currentNotePickupForProcessing',
+//            'visitTemplate',
+//            'cmSetupManagerSignatureStatusUpdatedBySession'
         )->where('uid', $noteUid)->first();
 
         $pros = $this->pros;