Samson Mutunga vor 3 Jahren
Ursprung
Commit
61be7577e8

+ 2 - 2
resources/views/app/dna/dashboard/appointments_pending_confirmation.blade.php

@@ -16,11 +16,11 @@ $appointmentPendingConfirmation = $performer->pro->appointmentsPendingConfirmati
                 @foreach($appointmentPendingConfirmation as $appointment)
                 <tr class="{{$appointment->bgColor}}">
                     <td>
-                        <a href="/patients/view/{{$appointment->clientUid}}" class="font-weight-bold d-block">
+                        <a native target="_blank" href="/patients/view/{{$appointment->clientUid}}" class="font-weight-bold d-block">
                             {{$appointment->client->name_first }} {{$appointment->client->name_last }}
                         </a>
                         <div class="mt-1">
-                            <a href="/patients/view/{{$appointment->clientUid}}/calendar/{{$appointment->uid}}">
+                            <a native target="_blank" href="/patients/view/{{$appointment->clientUid}}/calendar/{{$appointment->uid}}">
                                 {{ friendly_date_time($appointment->start_time) }} - {{ friendly_date_time($appointment->end_time) }}</a>
                             <span class="text-secondary">{{ friendly_timezone($appointment->timezone) }}</span>
                         </div>

+ 2 - 2
resources/views/app/dna/dashboard/cancelled_appointments_pending_ack.blade.php

@@ -16,11 +16,11 @@ $cancelledApptsPendingAck = $performer->pro->cancelledAppointmentsPendingAckReco
                 @foreach($cancelledApptsPendingAck as $appointment)
                 <tr class="{{$appointment->bgColor}}">
                     <td>
-                        <a href="/patients/view/{{$appointment->clientUid}}" class="font-weight-bold d-block">
+                        <a native target="_blank" href="/patients/view/{{$appointment->clientUid}}" class="font-weight-bold d-block">
                             {{$appointment->client->name_first }} {{$appointment->client->name_last }}
                         </a>
                         <div class="mt-1">
-                            <a href="/patients/view/{{$appointment->clientUid}}/calendar/{{$appointment->uid}}">
+                            <a native target="_blank" href="/patients/view/{{$appointment->clientUid}}/calendar/{{$appointment->uid}}">
                                 {{ friendly_date_time($appointment->start_time) }} - {{ friendly_date_time($appointment->end_time) }}</a>
                             <span class="text-secondary">{{ friendly_timezone($appointment->timezone) }}</span>
                         </div>

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

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

+ 2 - 2
resources/views/app/dna/dashboard/encounters_pending_my_review_dashboard.blade.php

@@ -27,12 +27,12 @@
                             {{$row->client->chart_number}}
                         </td>
                         <td>
-                            <a href="{{route('patients.view.notes.view.dashboard', ['patient' => $row->client, 'note' => $row])}}">
+                            <a native target="_blank" href="{{route('patients.view.notes.view.dashboard', ['patient' => $row->client, 'note' => $row])}}">
                                 {{$row->client->displayName()}}
                             </a>
                         </td>
                         <td>
-                            <a href="{{ route('patients.view.notes.view.dashboard', ['patient' => $row->client, 'note' => $row]) }}">
+                            <a native target="_blank" href="{{ route('patients.view.notes.view.dashboard', ['patient' => $row->client, 'note' => $row]) }}">
                                 {{friendly_date($row->effective_dateest)}}
                             </a>
                         </td>

+ 1 - 1
resources/views/app/dna/dashboard/patients_awaiting_mcp_visit.blade.php

@@ -23,7 +23,7 @@
                         {{$row->chart_number}}
                     </td>
                     <td class="pl-2">
-                        <a href="{{ route('patients.view.dashboard', $row) }}">
+                        <a native target="_blank" href="{{ route('patients.view.dashboard', $row) }}">
                             {{$row->displayName()}}
                         </a>
                     </td>

+ 1 - 1
resources/views/app/dna/dashboard/patients_without_appointment.blade.php

@@ -24,7 +24,7 @@
                                 {{$row->chart_number}}
                             </td>
                             <td>
-                                <a href="{{ route('patients.view.dashboard', $row) }}">
+                                <a native target="_blank" href="{{ route('patients.view.dashboard', $row) }}">
                                     {{$row->displayName()}}
                                 </a>
                             </td>