|
@@ -697,42 +697,46 @@
|
|
|
|
|
|
<div class="pl-3">
|
|
|
<div class="screen-only">
|
|
|
- <div class="d-flex align-items-center mb-2">
|
|
|
- <p class="font-weight-bold text-secondary m-0">Transmissions</p>
|
|
|
- </div>
|
|
|
- <?php $transmissions = $careMonth->rtmMskTransmissions; ?>
|
|
|
- <table class="table table-striped table-sm table-bordered mt-2 mb-0">
|
|
|
- <thead>
|
|
|
- <tr>
|
|
|
- <th class="text-secondary border-bottom-0">Effective Date</th>
|
|
|
- <th class="text-secondary border-bottom-0">Instructions</th>
|
|
|
- <th class="text-secondary border-bottom-0">Response</th>
|
|
|
- <th class="text-secondary border-bottom-0">Stamp</th>
|
|
|
- </tr>
|
|
|
- </thead>
|
|
|
- <tbody>
|
|
|
- @if(!$transmissions || !count($transmissions))
|
|
|
- <tr>
|
|
|
- <td class="text-secondary p-0 border-0" colspan="4">
|
|
|
- No items to show
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- @else
|
|
|
- @foreach($transmissions as $transmission)
|
|
|
- <tr>
|
|
|
- <td>{{friendly_date($transmission->effective_date)}}</td>
|
|
|
- <td>{{$transmission->protocol_detail_json}}</td>
|
|
|
- <td>{{$transmission->feedback_detail_json}}</td>
|
|
|
- <td>
|
|
|
- @php $clientRtmTransmission = $transmission @endphp
|
|
|
- @include('app.patient.care-month._stamp_client_rtm_transmission')
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- @endforeach
|
|
|
- @endif
|
|
|
- </tbody>
|
|
|
- </table>
|
|
|
- </div>
|
|
|
+ <div class="d-flex align-items-center mb-2">
|
|
|
+ <p class="font-weight-bold text-secondary m-0">Transmissions</p>
|
|
|
+ </div>
|
|
|
+ <?php $transmissions = $careMonth->rtmMskTransmissions; ?>
|
|
|
+ <table class="table table-striped table-sm table-bordered mt-2 mb-0">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th class="text-secondary border-bottom-0">Effective Date</th>
|
|
|
+ <th class="text-secondary border-bottom-0 w-35">Instructions</th>
|
|
|
+ <th class="text-secondary border-bottom-0 w-35">Response</th>
|
|
|
+ <th class="text-secondary border-bottom-0">Stamp</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ @if(!$transmissions || !count($transmissions))
|
|
|
+ <tr>
|
|
|
+ <td class="text-secondary p-0 border-0" colspan="4">
|
|
|
+ No items to show
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ @else
|
|
|
+ @foreach($transmissions as $transmission)
|
|
|
+ <tr>
|
|
|
+ <td>{{friendly_date($transmission->effective_date)}}</td>
|
|
|
+ <td>
|
|
|
+ @include('app.patient.rtm.protocol-summary', ['json' => $transmission->protocol_detail_json])
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ @include('app.patient.rtm.feedback-summary', ['json' => $transmission->feedback_detail_json])
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ @php $clientRtmTransmission = $transmission @endphp
|
|
|
+ @include('app.patient.care-month._stamp_client_rtm_transmission')
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ @endforeach
|
|
|
+ @endif
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
|
|
|
<div class="screen-only mt-3">
|
|
|
<div class="d-flex align-items-center">
|
|
@@ -796,8 +800,8 @@
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th class="text-secondary border-bottom-0">Effective Date</th>
|
|
|
- <th class="text-secondary border-bottom-0">Instructions</th>
|
|
|
- <th class="text-secondary border-bottom-0">Response</th>
|
|
|
+ <th class="text-secondary border-bottom-0 w-35">Instructions</th>
|
|
|
+ <th class="text-secondary border-bottom-0 w-35">Response</th>
|
|
|
<th class="text-secondary border-bottom-0">Stamp</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
@@ -812,8 +816,12 @@
|
|
|
@foreach($transmissions as $transmission)
|
|
|
<tr>
|
|
|
<td>{{friendly_date($transmission->effective_date)}}</td>
|
|
|
- <td>{{$transmission->protocol_detail_json}}</td>
|
|
|
- <td>{{$transmission->feedback_detail_json}}</td>
|
|
|
+ <td>
|
|
|
+ @include('app.patient.rtm.protocol-summary', ['json' => $transmission->protocol_detail_json])
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ @include('app.patient.rtm.feedback-summary', ['json' => $transmission->feedback_detail_json])
|
|
|
+ </td>
|
|
|
<td>
|
|
|
@php $clientRtmTransmission = $transmission @endphp
|
|
|
@include('app.patient.care-month._stamp_client_rtm_transmission')
|