Browse Source

Appts list date conversion issue fix

Vijayakrishnan 3 years ago
parent
commit
917bee4a3d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/views/app/patient/appointments.blade.php

+ 1 - 1
resources/views/app/patient/appointments.blade.php

@@ -39,7 +39,7 @@
                     <tr>
                         <td>
                             <a href="/patients/view/{{$patient->uid}}/calendar/{{$appointment->uid}}" class="text-nowrap">
-                                {{friendlier_date_time($appointment->raw_date . ' ' . $appointment->raw_start_time)}} <span class="text-sm">{{friendly_timezone($appointment->timezone)}}</span>
+                                {{$appointment->raw_date . ' ' . $appointment->raw_start_time}} <span class="text-sm">{{friendly_timezone($appointment->timezone)}}</span>
                             </a>
                         </td>
                         <td>{{ $appointment->pro->displayName() }}</pre></td>