|
@@ -5,6 +5,7 @@
|
|
<thead>
|
|
<thead>
|
|
<tr class="bg-light">
|
|
<tr class="bg-light">
|
|
<th class="px-2 text-secondary border-bottom-0 width-30px">Created</th>
|
|
<th class="px-2 text-secondary border-bottom-0 width-30px">Created</th>
|
|
|
|
+ <th class="px-2 text-secondary border-bottom-0 width-30px">View/Open</th>
|
|
<th class="px-2 text-secondary border-bottom-0 width-30px">Patient</th>
|
|
<th class="px-2 text-secondary border-bottom-0 width-30px">Patient</th>
|
|
<th class="px-2 text-secondary border-bottom-0">Medication</th>
|
|
<th class="px-2 text-secondary border-bottom-0">Medication</th>
|
|
</tr>
|
|
</tr>
|
|
@@ -15,10 +16,25 @@
|
|
<?php $data = json_decode($ticket->data); ?>
|
|
<?php $data = json_decode($ticket->data); ?>
|
|
<tr>
|
|
<tr>
|
|
<td class="px-2 text-nowrap">
|
|
<td class="px-2 text-nowrap">
|
|
- <a href="/patients/view/{{$ticket->patient->uid}}/tickets/erx/{{$ticket->uid}}">
|
|
|
|
- <i class="fa fa-arrow-right"></i>
|
|
|
|
|
|
+ <div>
|
|
{{friendlier_date_time($ticket->created_at)}}
|
|
{{friendlier_date_time($ticket->created_at)}}
|
|
- </a>
|
|
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ </td>
|
|
|
|
+ <td class="px-2 text-nowrap">
|
|
|
|
+ <div class="d-flex align-items-center flex-nowrap">
|
|
|
|
+ <a href="/patients/view/{{$ticket->patient->uid}}/tickets/erx/{{$ticket->uid}}?popupmode=1"
|
|
|
|
+ native target="_blank"
|
|
|
|
+ class="ticket-popup-trigger d-block text-nowrap mr-3">
|
|
|
|
+ <i class="fa fa-eye"></i>
|
|
|
|
+ View
|
|
|
|
+ </a>
|
|
|
|
+ <a href="/patients/view/{{$ticket->patient->uid}}/tickets/erx/{{$ticket->uid}}"
|
|
|
|
+ class="d-block text-nowrap">
|
|
|
|
+ <i class="fa fa-external-link-alt"></i>
|
|
|
|
+ Open
|
|
|
|
+ </a>
|
|
|
|
+ </div>
|
|
</td>
|
|
</td>
|
|
<td class="px-2 text-nowrap">
|
|
<td class="px-2 text-nowrap">
|
|
<a href="/patients/view/{{$ticket->patient->uid}}/tickets/erx">
|
|
<a href="/patients/view/{{$ticket->patient->uid}}/tickets/erx">
|