This commit is contained in:
Dwi Swandhana
2026-04-04 06:43:44 +07:00
parent a979b16df4
commit 80d03ac5c1
8 changed files with 7584 additions and 466 deletions

No files matched your search

@@ -150,14 +150,15 @@
<th>Asal Pasien</th>
<th>Status</th>
<th>Daftar</th>
<th>Target (Hari)</th>
<th>Estimasi Selesai</th>
<th>Warning</th>
</tr>
</thead>
<tbody>
@foreach($group['items'] as $j => $row)
<tr>
<th>Target (Hari)</th>
<th>Estimasi Selesai</th>
<th>Warning</th>
<th>Aksi</th>
</tr>
</thead>
<tbody>
@foreach($group['items'] as $j => $row)
<tr>
<td>{{ $j + 1 }}</td>
<td>{{ $row['nofoto'] }}</td>
<td>{{ $row['noregister'] }}</td>
@@ -169,15 +170,20 @@
<td>{{ $row['target_hari'] }}</td>
<td>{{ $row['target_selesai'] }}</td>
<td>
@if($row['sisa_menit'] <= 0)
<span class="badge badge-danger">{{ $row['warning_label'] }}</span>
@else
<span class="badge badge-warning">{{ $row['warning_label'] }} ({{ $row['sisa_menit'] }} menit)</span>
@endif
</td>
</tr>
@endforeach
</tbody>
@if($row['sisa_menit'] <= 0)
<span class="badge badge-danger">{{ $row['warning_label'] }}</span>
@else
<span class="badge badge-warning">{{ $row['warning_label'] }} ({{ $row['sisa_menit'] }} menit)</span>
@endif
</td>
<td>
<a href="{{ route('mikro.expertise', ['periksa' => $row['id'], 'return_to' => 'dashboard']) }}" class="btn btn-sm btn-primary">
Expertise
</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</td>