|
@@ -113,6 +113,8 @@
|
|
<th class="text-secondary border-bottom-0">MCP</th>
|
|
<th class="text-secondary border-bottom-0">MCP</th>
|
|
<th class="text-secondary border-bottom-0">RMM</th>
|
|
<th class="text-secondary border-bottom-0">RMM</th>
|
|
<th class="text-secondary border-bottom-0">RME</th>
|
|
<th class="text-secondary border-bottom-0">RME</th>
|
|
|
|
+ <th class="text-secondary border-bottom-0">ICDs</th>
|
|
|
|
+ <th class="text-secondary border-bottom-0">Claims</th>
|
|
<th class="text-secondary border-bottom-0">Matrix</th>
|
|
<th class="text-secondary border-bottom-0">Matrix</th>
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
@@ -140,6 +142,27 @@
|
|
<td>{{$careMonth->mcp ? $careMonth->mcp->displayName() : '-'}}</td>
|
|
<td>{{$careMonth->mcp ? $careMonth->mcp->displayName() : '-'}}</td>
|
|
<td>{{$careMonth->rmmPro ? $careMonth->rmmPro->displayName() : '-'}}</td>
|
|
<td>{{$careMonth->rmmPro ? $careMonth->rmmPro->displayName() : '-'}}</td>
|
|
<td>{{$careMonth->rmePro ? $careMonth->rmePro->displayName() : '-'}}</td>
|
|
<td>{{$careMonth->rmePro ? $careMonth->rmePro->displayName() : '-'}}</td>
|
|
|
|
+ <td>
|
|
|
|
+ <div class="d-flex flex-column">
|
|
|
|
+ <?php $careMonthCmReasonCodes = $careMonth->cmReasons->pluck('code')->toArray(); ?>
|
|
|
|
+ {{ implode(', ', $careMonthCmReasonCodes) }}
|
|
|
|
+ </div>
|
|
|
|
+ <div class="d-flex flex-column">
|
|
|
|
+ <?php $careMonthRmReasonCodes = $careMonth->rmReasons->pluck('code')->toArray(); ?>
|
|
|
|
+ {{ implode(', ', $careMonthRmReasonCodes) }}
|
|
|
|
+ </div>
|
|
|
|
+ </td>
|
|
|
|
+ <td>
|
|
|
|
+ @foreach($careMonth->claims as $claim)
|
|
|
|
+ <?php
|
|
|
|
+ $claimCpts = $claim->lines->pluck('cpt')->toArray();
|
|
|
|
+ ?>
|
|
|
|
+ <div>
|
|
|
|
+ {{ friendly_date($claim->created_at) }} | ${{$claim->expected_total}} | CPTs: {{ implode(', ', $claimCpts) }} | {{$claim->status}}
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ @endforeach
|
|
|
|
+ </td>
|
|
<td>
|
|
<td>
|
|
<a native target="_blank"
|
|
<a native target="_blank"
|
|
open-in-stag-popup
|
|
open-in-stag-popup
|