|
@@ -94,9 +94,28 @@
|
|
<tbody>
|
|
<tbody>
|
|
@foreach($note->claims as $claim)
|
|
@foreach($note->claims as $claim)
|
|
<tr>
|
|
<tr>
|
|
- <td>{{$claim->uid}}</td>
|
|
|
|
|
|
+ <td>{{$claim->iid}}</td>
|
|
<td>{{$claim->was_submitted?'Yes':'No'}}</td>
|
|
<td>{{$claim->was_submitted?'Yes':'No'}}</td>
|
|
</tr>
|
|
</tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td colspan="2">
|
|
|
|
+ <strong>Claim Lines</strong>
|
|
|
|
+ <table class="table table-sm table-condensed table-striped">
|
|
|
|
+ <tr>
|
|
|
|
+ <th>CPT</th>
|
|
|
|
+ <th>ICDs</th>
|
|
|
|
+ <th>Date of Service</th>
|
|
|
|
+ </tr>
|
|
|
|
+ @foreach($claim->lines as $claimLine)
|
|
|
|
+ <tr>
|
|
|
|
+ <td>{{$claimLine->cpt}}</td>
|
|
|
|
+ <td>{{$claimLine->icds()}}</td>
|
|
|
|
+ <td>{{$claimLine->date_of_service}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ @endforeach
|
|
|
|
+ </table>
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
@endforeach
|
|
@endforeach
|
|
</tbody>
|
|
</tbody>
|
|
</table>
|
|
</table>
|