|
@@ -40,8 +40,10 @@
|
|
<table class="table table-condensed p-0 m-0">
|
|
<table class="table table-condensed p-0 m-0">
|
|
<thead class="bg-light">
|
|
<thead class="bg-light">
|
|
<tr>
|
|
<tr>
|
|
|
|
+ @if($pro->pro_type === 'ADMIN')
|
|
<th class="border-0"></th>
|
|
<th class="border-0"></th>
|
|
- <th class="px-3 border-0">#</th>
|
|
|
|
|
|
+ @endif
|
|
|
|
+ <th class="px-3 border-0">Chart #</th>
|
|
<th class="border-0">Patient</th>
|
|
<th class="border-0">Patient</th>
|
|
<th class="border-0">Created At</th>
|
|
<th class="border-0">Created At</th>
|
|
@if($showProgramsColumn)<th class="border-0">Program(s)</th>@endif
|
|
@if($showProgramsColumn)<th class="border-0">Program(s)</th>@endif
|
|
@@ -54,7 +56,9 @@
|
|
<tbody>
|
|
<tbody>
|
|
@foreach($patients as $patient)
|
|
@foreach($patients as $patient)
|
|
<tr>
|
|
<tr>
|
|
|
|
+ @if($pro->pro_type === 'ADMIN')
|
|
<td>{{$loop->index + 1}}</td>
|
|
<td>{{$loop->index + 1}}</td>
|
|
|
|
+ @endif
|
|
<td class="px-3">
|
|
<td class="px-3">
|
|
<a href="{{route('patients.view.dashboard', $patient)}}">
|
|
<a href="{{route('patients.view.dashboard', $patient)}}">
|
|
{{$patient->chart_number}}
|
|
{{$patient->chart_number}}
|