|
@@ -14,9 +14,15 @@
|
|
@foreach($appointments as $appointment)
|
|
@foreach($appointments as $appointment)
|
|
<tr class="{{$appointment->bgColor}}">
|
|
<tr class="{{$appointment->bgColor}}">
|
|
<td>
|
|
<td>
|
|
- <a href="/patients/view/{{$appointment->clientUid}}" class="font-weight-bold d-block">
|
|
|
|
- {{$appointment->clientName }}
|
|
|
|
- </a>
|
|
|
|
|
|
+ <div class="d-flex align-items-baseline">
|
|
|
|
+ <a href="/patients/view/{{$appointment->clientUid}}" class="font-weight-bold d-block">
|
|
|
|
+ {{$appointment->clientName }}
|
|
|
|
+ </a>
|
|
|
|
+ @if(request()->input('for') === 'na')
|
|
|
|
+ <span class="mx-2 text-secondary">•</span>
|
|
|
|
+ <span class="text-secondary font-weight-normal">{{$appointment->proName}}</span>
|
|
|
|
+ @endif
|
|
|
|
+ </div>
|
|
<div class="mt-1">
|
|
<div class="mt-1">
|
|
<a href="/patients/view/{{$appointment->clientUid}}/calendar/{{$appointment->uid}}">
|
|
<a href="/patients/view/{{$appointment->clientUid}}/calendar/{{$appointment->uid}}">
|
|
{{ $appointment->friendlyStartTime }} - {{ $appointment->friendlyEndTime }}</a>
|
|
{{ $appointment->friendlyStartTime }} - {{ $appointment->friendlyEndTime }}</a>
|