|
@@ -69,21 +69,21 @@
|
|
|
@foreach($patient->appointments as $appointment)
|
|
|
<tr>
|
|
|
<td class="text-black p-0 border-0 pb-1">
|
|
|
- <div class="pb-0 d-flex align-items-center">
|
|
|
+ <div class="pb-0 d-flex align-items-center flex-wrap">
|
|
|
<a class="on-hover-opaque mr-1"
|
|
|
href="/patients/view/{{$patient->uid}}/manage-appointment/{{$appointment->uid}}"
|
|
|
title="Update">
|
|
|
<i class="font-size-11 fa fa-edit text-primary"></i>
|
|
|
</a>
|
|
|
- <span class="mr-1">{{ $appointment->raw_date }}</span>
|
|
|
+ <span class="mr-1 text-nowrap">{{ $appointment->raw_date }}</span>
|
|
|
@if($appointment->raw_start_time)
|
|
|
- <span class="mr-1">{{ friendly_time($appointment->raw_start_time, false) }}</span>
|
|
|
+ <span class="mr-1 text-nowrap">{{ friendly_time($appointment->raw_start_time, false) }}</span>
|
|
|
@endif
|
|
|
@if($appointment->timezone)
|
|
|
- <span class="text-secondary text-sm mr-1">({{ str_replace("_", " ", $appointment->timezone) }})</span>
|
|
|
+ <span class="text-secondary text-sm mr-1 text-nowrap">({{ str_replace("_", " ", $appointment->timezone) }})</span>
|
|
|
@endif
|
|
|
<span class="mr-1">/</span>
|
|
|
- <span class="font-weight-bold mr-1">{{$appointment->pro->displayName()}}</span>
|
|
|
+ <span class="font-weight-bold mr-1 text-nowrap">{{$appointment->pro->displayName()}}</span>
|
|
|
<div moe>
|
|
|
<a href="#" start show class="text-sm">({{ $appointment->status }})</a>
|
|
|
<form url="/api/appointment/updateStatus">
|