@@ -18,6 +18,7 @@
<thead>
<tr>
<th>Date</th>
+ <th>Day</th>
<th>Total hrs.</th>
</tr>
</thead>
@@ -25,6 +26,9 @@
@foreach($view_treatment_service_utilization_org as $x)
<td>{{$x->effective_date}}</td>
+ <td>
+ {{ date('w', strtotime($x->effective_date)) }}
+ </td>
<td>{{$x->total_hrs}}</td>
@endforeach