Browse Source

updated dashboard

Peter Muturi 3 năm trước cách đây
mục cha
commit
5389488bd9

+ 5 - 3
resources/views/app/dna/dashboard/encounters_in_progress_dashboard.blade.php

@@ -22,10 +22,12 @@
                         @foreach($encountersInProgress as $row)
                         <tr>
                             <td class="text-nowrap">
-                                {{$row->client->chart_number}}
+                                <a href="{{ route('patients.view.notes.view.dashboard', ['patient' => $row->client, 'note' => $row]) }}">
+                                  {{$row->client->chart_number}}
+                                </a>
                             </td>
                             <td>
-                                <a href="{{ route('patients.view.dashboard', $row->client) }}">
+                                <a href="{{ route('patients.view.notes.view.dashboard', ['patient' => $row->client, 'note' => $row]) }}">
                                     {{$row->client->displayName()}}
                                 </a>
                             </td>
@@ -61,4 +63,4 @@
             @endif
         </div>
     </div>
-</div>
+</div>