update
This commit is contained in:
No files matched your search
@@ -150,15 +150,15 @@
|
||||
<th>Asal Pasien</th>
|
||||
<th>Status</th>
|
||||
<th>Daftar</th>
|
||||
<th>Target (Hari)</th>
|
||||
<th>Estimasi Selesai</th>
|
||||
<th>Warning</th>
|
||||
<th>Aksi</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>
|
||||
@@ -170,32 +170,32 @@
|
||||
<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>
|
||||
<td>
|
||||
<a href="{{ route('mikro.expertise', ['periksa' => $row['id'], 'return_to' => 'dashboard']) }}" class="btn btn-sm btn-primary">
|
||||
Expertise
|
||||
</a>
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-sm btn-danger btn-ews-cancel"
|
||||
data-id="{{ $row['id'] }}"
|
||||
data-reques="{{ $row['reques'] }}"
|
||||
data-nmpasien="{{ $row['nmpasien'] }}"
|
||||
data-daftar="{{ $row['daftar'] }}"
|
||||
data-nofoto="{{ $row['nofoto'] }}"
|
||||
data-status="{{ $row['status'] }}"
|
||||
>
|
||||
Batalkan
|
||||
</button>
|
||||
</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>
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-sm btn-danger btn-ews-cancel"
|
||||
data-id="{{ $row['id'] }}"
|
||||
data-reques="{{ $row['reques'] }}"
|
||||
data-nmpasien="{{ $row['nmpasien'] }}"
|
||||
data-daftar="{{ $row['daftar'] }}"
|
||||
data-nofoto="{{ $row['nofoto'] }}"
|
||||
data-status="{{ $row['status'] }}"
|
||||
>
|
||||
Batalkan
|
||||
</button>
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
@extends('base.layout')
|
||||
@push('styles')
|
||||
<style>
|
||||
/* Tombol Refresh */
|
||||
#refresh-btn {
|
||||
position: fixed; /* selalu di tempat */
|
||||
bottom: 20px; /* jarak dari bawah */
|
||||
@@ -18,13 +17,10 @@
|
||||
backdrop-filter: blur(6px);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
#refresh-btn:hover {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
/* Responsif untuk mobile */
|
||||
@media (max-width: 600px) {
|
||||
#refresh-btn {
|
||||
width: 40px;
|
||||
|
||||
Reference in New Issue
Block a user