add sequencing tab

This commit is contained in:
2026-03-30 11:04:03 +07:00
parent 34358e3ee7
commit f0a5079b15
12 changed files with 125979 additions and 271 deletions

View File

@@ -40,7 +40,7 @@
display: flex;
background: white;
border-bottom: 1px solid #dcdcdc;
padding-left: 15px;
padding: 0 20px;
position: sticky;
top: 0;
z-index: 1000;
@@ -49,6 +49,17 @@
}
/* NAV ITEMS */
.btn-theme-outline {
background-color: #fff;
color: #0B8F3C;
border: 1px solid #0B8F3C;
}
.btn-theme-outline:hover {
background-color: #cce0d4;
color: #0B8F3C;
}
.nav-item {
padding: 12px 18px;
text-decoration: none;
@@ -92,7 +103,7 @@
}
.card {
border-radius: 10px;
border-radius: 0px !important;
border: 1px solid #E5E7EB;
}
@@ -112,9 +123,7 @@
</div>
<div class="ms-auto small">
Last update: 12:05 |
Data latency: 510 min |
User: National - Read Only
Last update: 12:05 | 2026-03-15
</div>
</div>
@@ -126,16 +135,34 @@
Overview
</a>
@foreach($programs as $program)
<!-- @foreach($programs as $program)
<a href="/dashboard/{{ strtolower($program->code) }}"
class="nav-item {{ request()->is('dashboard/' . strtolower($program->code)) ? 'active-tab' : '' }}">
{{ $program->code }}
</a>
@endforeach -->
@foreach($programs->where('code', '!=', 'NDS') as $program)
@if($program->code === 'SEQ')
<a href="/dashboard/seq"
class="nav-item {{ request()->is('dashboard/seq') ? 'active-tab' : '' }}">
SEQ
</a>
@else
<a href="/dashboard/{{ strtolower($program->code) }}"
class="nav-item {{ request()->is('dashboard/' . strtolower($program->code)) ? 'active-tab' : '' }}">
{{ $program->code }}
</a>
@endif
@endforeach
<button type="button" onclick="reloadDataSource()" class="btn btn-sm btn-warning" style="height: 27px; position: absolute; right: 40px; top: 70px;">
Refresh Data
</button>
<div class="ms-auto d-flex align-items-center gap-4 pe-3">
<button type="button" onclick="reloadDataSource()" class="btn btn-sm btn-theme-outline">
Refresh Data
</button>
</div>
</div>
@@ -163,4 +190,4 @@
</body>
</html>
</html>