initial commit

This commit is contained in:
Debian
2026-06-03 04:18:36 +07:00
commit a5569ce2a0
220 changed files with 30797 additions and 0 deletions
@@ -0,0 +1,64 @@
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="{{ asset('/asset/css/dashboardDoc.css') }}" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link href="{{ asset('/asset/main.css') }}" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link href="{{ asset('/assets/bootstrap/css/bootstrap.min.css') }}" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<title>Doctor Dashboard</title>
</head>
<body>
@include('doctor-sidebar')
<div class="container-flex" >
<div class="m-5 user-table">
<table id="example" class="display table">
<thead>
<tr>
<th>Nama Lengkap</th>
<th>Lokasi</th>
<th>Gender</th>
<th>Email</th>
<th>Berat Badan</th>
<th>Tinggi Badan</th>
<th>Action</th>
</tr>
</thead>
<tbody>
@foreach ($approvedConsultations as $consultation)
<tr>
<td>{{ $consultation->patient->name }}</td>
<td>{{ $consultation->location }}</td>
<td>{{ $consultation->patient->gender }}</td>
<td>{{ $consultation->patient->email }}</td>
<td>{{ $consultation->patient->healthDatas->last()->weight ?? 'N/A'}} </td>
<td>{{ $consultation->patient->healthDatas->last()->height ?? 'N/A'}}</td>
{{-- <td>{{ $item->updated_at->format('d F Y') }}</td> --}}
<td>
<a href="{{ route('doctor.show-consultation-result-form', $consultation->patient->id) }}" class="material-symbols-outlined me-2">assignment_add</a>
<a href="/aigochat/{{$consultation->patient->id}}" class="material-symbols-outlined text-success" >chat</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>