|
@@ -14,8 +14,7 @@
|
|
<table class="table table-bordered table-striped table-sm">
|
|
<table class="table table-bordered table-striped table-sm">
|
|
<thead>
|
|
<thead>
|
|
<tr>
|
|
<tr>
|
|
- <th>HCP last</th>
|
|
|
|
- <th>HCP first</th>
|
|
|
|
|
|
+ <th>HCP</th>
|
|
<th>Date</th>
|
|
<th>Date</th>
|
|
<th>Total hrs.</th>
|
|
<th>Total hrs.</th>
|
|
</tr>
|
|
</tr>
|
|
@@ -23,8 +22,7 @@
|
|
<tbody>
|
|
<tbody>
|
|
@foreach($view_treatment_service_utilization as $x)
|
|
@foreach($view_treatment_service_utilization as $x)
|
|
<tr>
|
|
<tr>
|
|
- <td>{{$x->name_last}}</td>
|
|
|
|
- <td>{{$x->name_first}}</td>
|
|
|
|
|
|
+ <td>{{$x->name_last}} . ', ' . {{$x->name_first}}</td>
|
|
<td>{{$x->effective_date}}</td>
|
|
<td>{{$x->effective_date}}</td>
|
|
<td>{{$x->total_hrs}}</td>
|
|
<td>{{$x->total_hrs}}</td>
|
|
</tr>
|
|
</tr>
|
|
@@ -39,20 +37,16 @@
|
|
<table class="table table-bordered table-striped table-sm">
|
|
<table class="table table-bordered table-striped table-sm">
|
|
<thead>
|
|
<thead>
|
|
<tr>
|
|
<tr>
|
|
- <th>HCP last</th>
|
|
|
|
- <th>HCP first</th>
|
|
|
|
- <th>Pt. last</th>
|
|
|
|
- <th>Pt. first</th>
|
|
|
|
|
|
+ <th>HCP</th>
|
|
|
|
+ <th>Pt.</th>
|
|
<th>Total hrs.</th>
|
|
<th>Total hrs.</th>
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
</thead>
|
|
<tbody>
|
|
<tbody>
|
|
@foreach($view_treatment_service_utilization_by_patient as $x)
|
|
@foreach($view_treatment_service_utilization_by_patient as $x)
|
|
<tr>
|
|
<tr>
|
|
- <td>{{$x->pro_lname}}</td>
|
|
|
|
- <td>{{$x->pro_fname}}</td>
|
|
|
|
- <td>{{$x->pt_lname}}</td>
|
|
|
|
- <td>{{$x->pt_fname}}</td>
|
|
|
|
|
|
+ <td>{{$x->pro_lname}} . ', ' . {{$x->pro_fname}}</td>
|
|
|
|
+ <td>{{$x->pt_lname}} . ', ' . {{$x->pt_fname}}</td>
|
|
<td>{{$x->total_hrs}}</td>
|
|
<td>{{$x->total_hrs}}</td>
|
|
</tr>
|
|
</tr>
|
|
@endforeach
|
|
@endforeach
|